白水向前冲
2015-01-06 16:10
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
//alert("欢迎来到慕课网")
function open(){
window.open("http://www.sina.com","_blank","width=600,height=400")
}
</script>
</head>
<body>
<form>
<input type="button" value="点击我,打开新窗口" onclick="open()" />
</form>
</body>
</html>
open是保留字,换个函数名
换个函数名,open貌似是个关键字,用个open1什么的试试就知道了。。。
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题