wsitachi
2015-08-14 17:14
<!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的值呢?
if(b!==null) 为什么这样写 用ture不行吗?
变量名是不需要加引号的。
window.open(b,"_blank","top=200,left=200,width=600,height=400,menubar=no,toolbar=no")
这里最好给个默认网站吧
var b=prompt("请输入您的网址!","http://www.imooc.com")
修改后的代码,你看看
<!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("请输入您的网址!","http://www.imooc.com") 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>
JavaScript入门篇
739816 学习 · 9566 问题
相似问题
回答 4
回答 5