当前位置: 代码迷 >> Web前端 >> jQueryUI 移除目前dialog的关闭按钮
  详细解决方案

jQueryUI 移除目前dialog的关闭按钮

热度:778   发布时间:2012-11-23 00:03:43.0
jQueryUI 移除当前dialog的关闭按钮

很简单,只要在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();
			}
 });
?
  相关解决方案