为什么用IE浏览器打不开啊
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
function Wopen(){
var obey=confirm("确定要打开新的网页吗?")
if(obey==true){
window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0,menubar=no,toolbar=no,scrollbar=no,status=no');
}else{
alert("打开失败!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>
有可能是IE版本问题,我用的是IE最新版的,一般都用IEedge,虽然不知道这是什么版本
是不是浏览器出现什么错误啦
不好意思,昨天回答错了,你的代码没有错误,我在DW上试过了所有功能所有浏览器都能实现,但是在慕课上提交后运行就会出现top=,和left=,这两个设置失效的问题
也不行
亲,"width:600px;height:400px;top:100px;left:0px;",这些改正一下试试看