如何实现window .open打开prompt中的值
<!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 href=prompt("请输入网址:");
if(href!=null)
{
window.open(href,'_blank','width=400,height=500,menubar=no,toolbar=no')
}
else
{window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no')
}
}
else
{
document.write("你取消了操作!")
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
先编辑如上,可以获得值,但无法打开prompt中的网址。请大虾……