您现在的位置: 万盛学电脑网 >> 程序编程 >> 网页制作 >> 网页设计 >> 正文

javascript 禁用IE工具栏,导航栏等等实现代码

作者:佚名    责任编辑:admin    更新时间:2022-06-22

class="area"> 理问题时候遇到的,就顺便记录下, 
复制代码代码如下:
function OnOpenWin() { 
if (window.name != "OAopenWindow") { 
win = window.open("login.aspx", "OAopenWindow", "toolbar=no, menubar=no, scrollbars=no, resizable=yes,location=no,status=no,width=" + (screen.width - 5) + ",height=" + (screen.height - 38) + ",top=0,left=0"); 
if (win != null) { 
window.opener = null; window.open('', '_self', ''); window.close(); 

// else{ 
// document.all('div_msg').style.display='block'; 
// } 

else { 
window.moveTo(-3, -3); 
setTimeout("self.focus()", 500);