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

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】