指引网

当前位置: 主页 > 网页制作 > WEB开发 >

去掉IE地址栏、工具栏、菜单栏

来源:网络 作者:佚名 点击: 时间:2017-07-19 00:19
[摘要] 放到head中 scriptlanguage='javascript' if(window.opener==null){ window.opener=null; window.close(); window.open('index.html','','toolbar=no,menubar=no,location=no,status=no,width='+screen.width+',height='+screen.height+',left=0,top=0'); } /script

放到head中
<script language='javascript'> 
if(window.opener==null){ 
window.opener=null; 
window.close(); 
window.open('index.html','','toolbar=no,menubar=no,location=no,status=no,width=' + screen.width + ',height=' + screen.height + ',left=0,top=0'); 

</script>

------分隔线----------------------------