如何实现新窗口中弹出网页内容是在prompt里面输入的网址? 不能直接用message放在windows.open里面?
<!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=prompt("请输入对应网址", "");
if (message==false)
{ alert("wrong address");
}
else
{ rec(); }
}
function rec()
{
var a=confirm("是否打开网页?");
if (a==true)
{ window.open('message','_blank','width=600,height=400,menubar=no,toolbar=no, status=no,scrollbars=yes'); }
else { alert("您已取消进入")}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>