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
</script>




【编写于 2009-01-24】

猜你喜欢

转载自can-do.iteye.com/blog/2293358
今日推荐