<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
function aopen(){
alert("欢迎来到慕课网");
window.open('http://www.imooc.com','_blank','width=600,height=400');
}
</script>
</head>
<body>
<form>
<input type="button" value="点击我,打开新窗口" onclick="aopen()" />
</form>
</body>
</html>
按理说不会啊,没看出有问题
open是javascript里的关键字符,不能把function命名为open的吧?
是关于这个课程的
http://www.imooc.com/code/1146
然后如果是open() 根本不弹窗
如果改成bopen()就正常了