取消不弹出alert的警告
function openWindow()
{
var open=confirm("确定打开新窗口吗?");
if(open==true)
{
var url=prompt("通过输入对话框,确定打开的网址","http://www.imooc.com/");
if (url!=null)
{
window.open(url,"ooppeenn",'width=400,height=500,menubar=no,toolbar=no');
}
else
{
alert("886");
}
}
else
{
alert("886");
}
}