请问各位大神,弹出窗口的网址不能用变量保存么?
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var message=confirm("是否打开?")
if(message==true)
{
var url=prompt("输入网址:http://www.imooc.com")
if(url==null){
url ="http://www.imooc.com";
}
window.open(url,'_blank','width=600,height=500,menubar=no,toolbar=no')
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
//我在弹出的窗口输入网址就能访问,如果不输入 为空 代码就设置地址为慕课网,可是不输入的时候访问不了