Jesuer
2015-08-29 20:09
<!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;
a=confirm("您好,您确认打开此窗口");
if (a==true)
{ var b=prompt("您好,请输入您要打开的窗口地址:");
if(b!=null)
{window.open(b,'_blank','wdith=400px,height=500px,menubal=no,toolbal=no');}
else
{window.open('http//:www.17173.com','_blank');}
}else{window.open('http//:www.17173.com','_blank');}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
我想在点击取消的时候,跳到另外一个我设定好的网址,该怎么办?
另外,是menubar和nullbar,不是menubal和nullbel。
<!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;
a=confirm("您好,您确认打开此窗口");
if (a==true)
{ var b=prompt("您好,请输入您要打开的窗口地址:");
if(b!=null)
{window.open(b,'_blank','wdith=400px,height=500px,menubal=no,toolbal=no');}
else
{window.open('http//:www.17173.com','_blank');}
}
else
{
window.open('http://www.baidu.com','_blank');//这里改一下你要设定的网站。记住要加http:// 是冒号后双//
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
JavaScript入门篇
739817 学习 · 9566 问题
相似问题