只有confirm运行,后面不运行
去掉confirm部分后面也正常运行。
不知道为什么我的代码不能连起来,谢谢~~~求指点
function openWindow()
{
var massage=confirm("do u want to open?");
if (massage==ture){
var wantopen=prompt("write your web:","http://www.imooc.com/");
if (wantopen!=null){
window.open(' wantopen','blank','width=400,height=500,menubar=no,toolbar=no,status=no,scrollbars=yes')
}
}
}
不是ture,而是true
message 是boolean类型,在if语句中只要这样写if(message)
好了~~~谢谢