欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IE下的模式窗口 博客分类: web前端 IEJavaHTML 

程序员文章站 2024-02-25 21:13:57
...
<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>
相关标签: IE Java HTML