当前位置: 代码迷 >> Web前端 >> IE上的模式窗口
  详细解决方案

IE上的模式窗口

热度:115   发布时间:2012-10-09 10:21:45.0
IE下的模式窗口
<script language="javascript">
if(window.opener==null){
window.opener=null;
window.open('12.html','','location=no,toolbar=no,menubar=no,status=yes,resizable=yes,width=' + screen.width + ',height=' + screen.height + ',left=0,top=0');
}
if(window.opener!=null){
	window.opener.close();
	window.opener=null;
}
</script>
  相关解决方案