在IE6浏览器下面dialog页面不显示
<script language="javascript" type="text/javascript">
function add(){
$('#dlg').dialog({
title: 'XXXXXXXX',
width: 500,
height: 350,
closed: false,
cache: false,
modal: true,
buttons:[{
text:'保存',
handler:function(){
$("#btnSave",document.getElementById('subframe').contentWindow.document).click();
}
},{
text:'关闭',
handler:function(){$('#dlg').dialog('close');}
}],
content:'<iframe id="subframe" src="Add.aspx" width="100%" height="100%" frameborder="0"></iframe>'
});
reloadiframe();
}
</script>
//处理IE6 iframe 空白问题
function reloadiframe() {
if($.browser.msie && $.browser.version == '6.0') {
document.frames['subframe'].location.reload();
}
}