How to change the style of alert box?

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

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

13条回答
  •  情深已故
    2020-11-22 02:27

    The alert box is a system object, and not subject to CSS. To do this style of thing you would need to create an HTML element and mimic the alert() functionality. The jQuery UI Dialogue does a lot of the work for you, working basically as I have described: Link.

    
    
    
      
      
      jQuery UI Dialog - Default functionality
      
      
      
      
      
    
    
     
    

    This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.

提交回复
热议问题