变量被赋值了一个网址如何调用这个网址?
<!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 a=confirm("确定打开吗?");
if(a==true){
var b=prompt("请输入您的网址!")
if(b!==null){
window.open("b","_blank","top=200,left=200,width=600,height=400,menubar=no,toolbar=no")
}else{}
}else{}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
变量b已经被赋值了。比如我们输入的是一个网址。这个时候b就被赋值了一个网址。如何使用b的值呢?