JS编程练习问题为什么==ture时候程序不运行,改成!=null就可以了呢?
function openWindow(){
var btnopen=prompt("是否打开该网站?","www.imooc.com");
if(btnopen==ture){
window.open('http://www.imooc.com','_blank','width=400px;height=500px,menubar=no,toolbar=no');
}
else{
alert("再见!")
}
当我的代码是这样的时候,只显示消息对话框,点击确定,无法弹出新网页。
function openWindow(){
var btnopen=prompt("是否打开该网站?","www.imooc.com");
if(btnopen!=null){
window.open('http://www.imooc.com','_blank','width=400px;height=500px,menubar=no,toolbar=no');
}
else{
alert("再见!")
}
当代码中的btnopen==ture改成btnopen!=null时候,对话框出现时,点击确定就会弹出新网页,这是为什么?