petreling
2016-06-27 22:19
为啥我和别人的代码一样,会出现2次alert提示框
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")
亲,alert 一次弹框,window.open又是一次弹框,你选择一个就好了,还有_blank,是下划线
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题