1 var O_dialog = $("#dialog-modal");
 2         O_dialog.dialog({
 3             closeOnEscape: false,
 4             width: 250,
 5             height: 80,
 6             resizable: false,
 7             draggable: false,
 8             modal: true,
 9             title: "正在加载,请稍候...",
10             //隐藏默认的关闭按钮
11             open: function (event, ui) {
12                 $(".ui-dialog-titlebar-close", $(this).parent()).hide();
13             }
14         });

 

相关文章:

  • 2022-12-23
  • 2021-06-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-23
  • 2021-06-25
猜你喜欢
  • 2021-06-11
  • 2022-12-23
  • 2021-05-26
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案