window.open问题
本人刚学JS,但是连个window.open都弹不出来!:(
<script>
window.open( "information.html ", "_blank ", "width=200,height=200,toolbar=no ");
</script>
刷新网页无反应!
------解决方案-------------------- <script>
window.open( "information.html ", " ", "_blank ", "width=200,height=200,toolbar=no ");
</script>
试试
------解决方案--------------------我错了,你的代码在我这可以正常运行.
查看你的浏览器是否禁止了弹出窗口.
------解决方案-------------------- <script>
window.open( "information.html ", "_blank ", "width=200,height=200,toolbar=no ");
</script>
上面的代码是没错,你要刷新页面就弹窗要这样写:
<body onload= "window.open( 'information.html ', '_blank ', 'width=200,height=200,toolbar=no '); ">
------解决方案--------------------代码没有问题的,也可能是你的工具的问题