How to change the style of alert box?

后端 未结 13 1976
一生所求
一生所求 2020-11-22 01:49

I need to change the style of the \"OK\" Button in an alert box.

13条回答
  •  时光取名叫无心
    2020-11-22 02:29

    One option is to use altertify, this gives a nice looking alert box.

    Simply include the required libraries from here, and use the following piece of code to display the alert box.

    alertify.confirm("This is a confirm dialog.",
      function(){
        alertify.success('Ok');
      },
      function(){
        alertify.error('Cancel');
      });
    

    The output will look like this. To see it in action here is the demo

提交回复
热议问题