Open Window时,可以无限弹出窗口并且不会产生覆盖 javascriptopenwindow
程序员文章站
2024-01-17 11:55:40
...
function openNewWindow(paramUrl) {
var strTitle = "newWindow"+"_"+parseInt(Math.random()*100)+1;
//alert(strTitle);
window.open(paramUrl,strTitle, 'height=600, width=800, top=100, left=100, toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=no, status=no');
}//end of method openNewWindow
</script>
【编写于 2009-01-24】
var strTitle = "newWindow"+"_"+parseInt(Math.random()*100)+1;
//alert(strTitle);
window.open(paramUrl,strTitle, 'height=600, width=800, top=100, left=100, toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=no, status=no');
}//end of method openNewWindow
</script>
【编写于 2009-01-24】
上一篇: JS得到字符串中重复次数最多的项两种方法
下一篇: 解决局域网中IP盗用问题的三种技术手段