Heim >Web-Frontend >js-Tutorial >javascript 禁用IE工具栏,导航栏等等实现代码_javascript技巧

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 17:38:421337Durchsuche

处理问题时候遇到的,就顺便记录下,

复制代码 代码如下:

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);
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn