一缘一会
2017-02-24 18:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
function wopen(){
var window=prompt("http://www.imooc.com");
if(window!=null){
window.open('http://www.imooc.com','_blank',width=400px,height=500px,menubar=no,toolbar=no);
}else{
alert("结束");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="wopen()" />
</body>
</html>
变量不能与js方法名相同, prompt("http://www.imooc.com"); 多余
两处错误
var window=prompt("http://www.imooc.com"); //变量不能与js方法名相同,可以命名为_window ,_w1,_w2,...;
window.open('http://www.imooc.com','_blank',width=400px,height=500px,menubar=no,toolbar=no); //需要给 width=400px,height=500px,menubar=no,toolbar=no 添加引号 ' ' 或 " " , 统一用单引号或双引号。
JavaScript入门篇
739817 学习 · 9566 问题
相似问题