手记

函数名不得使用关键字

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
    function open(){
        window.open('_blank');
    }

</script>
</head>
<body>
<form>
<input type="button" value="点击我,打开新窗口"  onclick="open()"/>
</form>
</body>
</html>

如上代码所示,当点击按钮时只有加载没有效果,并不会打开新窗口,反复检查后将open改为openc就OK啦~~
由此得出心得,函数名一定不能用关键字!!!

0人推荐
随时随地看视频
慕课网APP