这一题为什么会弹窗?课程2-6
可为什么会弹窗啊?它只是定义了mywin,又没有调用啊。
==============================================================
可这么说的话,为什么这个不会敲一个代码弹一个窗口呢?里面也有window.open呀
我的问题是在什么情况下window.open会直接奏效,而什么时候不会呢?(见课程2-5)
<script type="text/javascript"> /*window.open*/ function Wopen(){ window.open('http://www.imooc.com','_blank','width=600px,height=400px,top:100px,menubar=no,toolbar=no, status=no,scrollbars=yes'); /*menubar:菜单栏 toobar:工具栏 status:状态栏*/ } </script>