慕村2489475
2018-11-15 16:42
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
alert("欢迎来到慕课网!");
function openWindow(){
window.open("https://www.imooc.com/" "_block" "width=600px,height=400px")
}
</script>
</head>
<body>
<form>
<input type="button" value="点击我,打开新窗口" onclick="openWindow()"/>
</form>
</body>
</html>
你缺少逗号。
<script type="text/javascript">
function dj(){
window.open("https://www.imooc.com","_blank","width=600px,height=400px").alert("欢迎来到慕课网");
}
</script>
window.open("https://www.imooc.com/" "_block" "width=600px,height=400px")
括号中的分句之间缺少逗号
我觉得问题主要在参数之间都要加上","不然识别不了。_block只是name,问题不大的。第二个问题是一个语句写完了之后得写一个分号";"虽然电脑还是可以智能识别,但是为了规范还是写着好。
是_blank,不是_block
window.open('www.baidu.com','_blank','width=600,height=400');
是_blank,不是block
window.open("https://www.imooc.com/" "_block" "width=600px,height=400px")三个参数要用逗号(,)隔开,就像这样window.open("https://www.imooc.com/","_block", "width=600px,height=400px")
function open(){
window.open("","_block","width=600,height=400");
}
alert("欢迎来到慕课网!")
_blank
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题