JS函数select()无法调用

<html>
<script>
function select(){
    alert("haha");
}
</script>
<body>
<input type="button" value="sure" onclick="select()">
</body>

</html>

写了上面一段测试代码,发现JS不能用select命名,否则无法调用。


你可能感兴趣的:(JS函数select()无法调用)