Open Window时,可以无限弹出窗口并且不会产生覆盖

阅读更多
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





【编写于 2009-01-24】

你可能感兴趣的:(javascript,open,window)