function openWindow(){ var message=confirm("确定打开网站吗?"); if(yn==true){ var mywin=prompt("请输入网址:"); if(mywin="http://www.imooc.com/") { window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no') } } else{} } openWindow();
function openWindow(){
var message=confirm("确定打开网站吗?");
if(message==true) {
var url=prompt("请输入一个网址","http://www.imooc.com/");
window.open(url,'_blank','width=400,height=500,menubar=no,toolbar=no')
}
}
else
{window.close();}
}
感觉你的程序有问题啊
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>innerHTML</title>
<script type="text/javascript">
function openWindow()
{ var message=confirm("确定打开网站吗?");
if(message==true){
window.open('http://www.imooc.com/','_blank',
'width=400,height=500,menubar=no,toolbar=no')
} else{
//点击取消执行将为空
}
}
openWindow();
</script>
</head>
<body>
</body>
</html>
if(massage==true)
yn是什么