慕前端8664132
2016-08-07 23:17
function btn(){
var con = alert("你好!欢迎来到慕课网!") //把confirm()换了后就打不开新窗口了,怎么回事啊
if(con==true){
window.open("http://www.imooc.com","_blank","width=600,height=400");
}else{
alert("拜拜!") //结果是这个
}
};
alert的返回值时undefined. 所以con!=true,就不会执行window.open("http://www.imooc.com","_blank","width=600,height=400");
alert()应该只是纯粹的弹窗把,confirm()才算是带选择的窗口吧
首先非常感谢你的回答了
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题