window.open 属性能否弹出N个窗口,
我现在用window.open只能谈出一个窗口,如果再想谈出别的窗口,只能把这个打开的窗口关闭,才能打开新的,有什么代码可以让我可以分别打开N个窗口而不用关闭其他的窗口????
我的代码
<script language="javascript">
function openScript(url, width, height){
var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=yes' );
}
</script>