猿问

帮忙看一下下面的attachEvent怎么不行

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>事件</title>
    </head>
    <body>
        <div id="box">

            <input type="button" value="按钮4" id="btn4"/>
        </div>
        
        
        <script>
        
        
             //html事件
            function showMsg(){
                alert("hello");
            }

            //ie下的dom2级事件
            var btn4=document.getElementById("btn4");
            btn4.attachEvent('onclick',showMsg);
        </script>
    </body>
</html>


肖小波
浏览 1693回答 3
3回答

拖鞋_

JS 代码中最后一行  btn4.setAttribute("onclick", "showMsg()"); 换成这个就行了
随时随地看视频慕课网APP
我要回答