欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jQueryUI 移除当前dialog的关闭按钮

程序员文章站 2022-07-13 10:29:59
...

很简单,只要在open方法中加入一句代码:

$( "#loadingPageId" ).dialog({
			autoOpen:false,
			resizable:false,
			height:90,
			width:210,
			closeOnEscape:false,
			title:"数据处理中,请稍等......",
                         modal: true,
			open:function(event,ui){
				$(".ui-dialog-titlebar-close", $(this).parent()).hide();
			}
 });