问答详情
源自:8-1 window对象

显示2次提示框

为啥我和别人的代码一样,会出现2次alert提示框

提问者:petreling 2016-06-27 22:19

个回答

  • 慕村1994845
    2016-10-20 20:50:39

    window.open("http://www.imooc.com/","-blank","width=600px;height=400px")

    -blank 写错;"width=600px;height=400px"去掉单位px,还有,width与height用英文的逗号隔开而不是分号

    改为:

    window.open("http://www.imooc.com/","_blank","width=600,height=400")


  • 大神进阶者
    2016-06-27 22:55:27

    亲,alert 一次弹框,window.open又是一次弹框,你选择一个就好了,还有_blank,是下划线