IE6 jquery dialog select无法遮盖

来源:互联网 发布:阿里云 ota 安卓 编辑:程序博客网 时间:2024/04/30 02:47
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
0 0