jQuery UI Dialog bgiframe 插件解决 IE6 下无法遮盖
今天需要使用Ui的 Dialog 的bgiframe 功能屏蔽 IE6 的select
csharp代码
[c-sharp] view plaincopy
<SPAN style="FONT-SIZE: larger" mce_style="FONT-SIZE: larger"> $("#Loadingnmenu").dialog({
modal: true,
bgiframe:true,
title:'测试中'
});
$("#Loadingnmenu").dialog('open');
</SPAN>
$("#Loadingnmenu").dialog({
modal: true,
bgiframe:true,
title:'测试中'
});
$("#Loadingnmenu").dialog('open');
可是在Ie6 下 还是不能屏蔽 只能查找下原因
原来Jquery Ui 没有默认包括 这个插件
只有自己下载个 放在页面里就可以了!
下载地址:http://hi.baidu.com/pub/show/createtext
今天需要使用Ui的 Dialog 的bgiframe 功能屏蔽 IE6 的select
csharp代码
[c-sharp] view plaincopy
<SPAN style="FONT-SIZE: larger" mce_style="FONT-SIZE: larger"> $("#Loadingnmenu").dialog({
modal: true,
bgiframe:true,
title:'测试中'
});
$("#Loadingnmenu").dialog('open');
</SPAN>
$("#Loadingnmenu").dialog({
modal: true,
bgiframe:true,
title:'测试中'
});
$("#Loadingnmenu").dialog('open');
可是在Ie6 下 还是不能屏蔽 只能查找下原因
原来Jquery Ui 没有默认包括 这个插件
只有自己下载个 放在页面里就可以了!
下载地址:http://hi.baidu.com/pub/show/createtext