小贤子
2016-05-03 15:56
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>close()</title>
<script type="text/javascript">
function rec()
{
var mywin=confirm("是否打开新窗口")
if(mywin==true)
{ var Open;
Open=prompt("请输入网址","http://www.imooc.com/")}
if(Open!=null)
{
window.open('Open','_blank','width=400px,height=500px,menubar=no,toolbar=no') ;
}
else
{
alert("再见")
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="open"/>
</body>
</html>
点击打开网页的时候 跳出来的是Open,而不是输入的网址
第一个参数是url,直接输入url就可以了
window.open('Open','_blank','width=400px,height=500px,menubar=no,toolbar=no') ;这一行有问题,第一个参数不应该加引号
JavaScript入门篇
739818 学习 · 9566 问题
相似问题