问答详情
源自:2-3 DOM2级事件处理程序

【基础】为什么Dom中第一个和第四个无法实现?

请问是哪里出错呢?感觉没错啊。
<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
<input type="button" value="This is a code" id="one">
<input type="button" value="This is a code" id="two" onClick="a()">
<input type="button" value="This is a code" id="three">
<script type="text/javascript">
    var one = document.getElementById("one");
    one.onClick=function ()
    {
        alert('kekeke');
    }
    
    function a()
    {
        alert('hahaha');
    }
    var three = document.getElementById('three');
    three.addEventListener('click',a,false);
    
    var four = document.getElementById("four");
    four.attachEvent('onclick',a);
</script>
</body>
</html>


提问者:KokoTa 2015-09-01 16:49

个回答

  • haodaking
    2015-09-04 15:04:34
    已采纳

    第一个:one.onclick;onclick字母小写;

    第四个:你有input按钮吗?

    还有测试addEventListener和attachEvent要分开浏览器测试,先注释掉一个