显示2次提示框

来源:8-1 window对象

petreling

2016-06-27 22:19

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

写回答 关注

2回答

  • 慕村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,是下划线

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题