<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
function openwindow(){
window.open('https://www.baidu.com','width=600,height=400,menubar=no,toolbar=no');
}
</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>
你应该把弹出的窗口进行定位_blank:在新窗口显示目标网页",_self:在当前窗口显示目标网页,_top:框架网页中在上部窗口中显示目标网页
因为你少了一个参数,高度宽度这代码因为少了第2个参数跑到第2的位置了
window.open('https://www.baidu.com',,'width=600,height=400,menubar=no,toolbar=no');这样就好了