代码运行时的问题
function openWindow()
{
var mymessage = confirm("是否确定打开新网页?");
if(mymessage == true)
{
var webadress=prompt("请输入网页:");
if(webadress!=null)
{
window.open(webadress,'_blank','width=400px,height=400px,menubar=no,toolbar=no');
}else {window.open('http://www.imooc.com','_blank','width=400px,height=400px,menubar=no,toolbar=no');
}
}else
{alert("结束!");}
}
为什么我的代码下划线部分无法运行出来啊?前面的都可以的