jQuery UI对话框的alert()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery UI对话框的alert()相关的知识,希望对你有一定的参考价值。

  1. /**
  2.  * Override javascript alert() and wrap it into a jQuery-UI Dialog box
  3.  *
  4.  * @depends $.getOrCreateDialog
  5.  *
  6.  * @param { String } the alert message
  7.  * @param { Object } jQuery Dialog box options
  8.  */
  9. function alert(message, options) {
  10.  
  11. var defaults = {
  12. modal : true,
  13. resizable : false,
  14. buttons : {
  15. Ok: function() {
  16. $(this).dialog('close');
  17. }
  18. },
  19. show : 'fade',
  20. hide : 'fade',
  21. minHeight : 50,
  22. dialogClass : 'modal-shadow'
  23. }
  24.  
  25. $alert = $.getOrCreateDialog('alert');
  26. // set message
  27. $("p", $alert).html(message);
  28. // init dialog
  29. $alert.dialog($.extend({}, defaults, options));
  30. }

以上是关于jQuery UI对话框的alert()的主要内容,如果未能解决你的问题,请参考以下文章

jQuery UI 警报对话框作为 alert() 的替代品

如何在 Jquery UI 对话框中实现“确认”对话框?

jquery-ui-dialog - 如何挂钩到对话框关闭事件

jQuery-UI 自动完成不会显示在 jQuery-UI 对话框中

jquery 如何弹出自定义对话框?

jquery-ui对话框自动高度问题