使用Javascript加载页面时如何打开弹出新窗口?
我想,当一个网站加载时,它会自动打开弹出新窗口。
我使用以下内容:
<script type="text/javascript">
function open_on_entrance(url,name)
{
window.open('http://www.google.com','google', ' menubar,resizable,dependent,status,width=300,height=200,left=10,top=10')
}
</script>
<body onload="open_on_entrance()"></body>
不行??