问答详情
源自:-

为什么IE事件没有效果了,不知道为什么??求指教。

<!DOCTYPE HTML>
<html>
<head>
    <title>IE事件处理函数</title>
    <meta charset="UTF-8">
</head>
<body>
    <input type="button" id="btn" value="IE事件处理函数" />

    <script type="text/javascript">
        //需要调用的函数
        function IEevent(){
            alert("this is a IE event");
        }

        var btn=document.getElementById("btn");
        btn.attachEvent('onclick',IEevent);//注意事件名称是onclick
    </script>
</body>
</html>

提问者:深呼吸_0 2015-08-29 17:08

个回答

  • 深呼吸_0
    2015-08-30 10:08:16

    哦,谢谢啊

  • imooc_hcy
    2015-08-30 00:16:06

    function IEevent(){
                alert("this is a IE event");
            }

    改为以下:

    IEevent=function (){
                alert("this is a IE event");
            }