js簡單封裝能向回調函數傳入參數的事件處理函數

<!doctype html>html

<html>dom

<head>htm

    <meta charset="UTF-8">ip

    <title>Document</title>get

</head>input

<body>it

<input type="text" id="fInp"/>io

<script>console

    var eventRegister = function(dom, type, data, callBack){event

        var callback = function(e){

            callBack(e,data);

        }

        if(window.addEventListener){

            dom.addEventListener(type, callback, false);

        }else if(window.attachEvent){

            dom.attachEvent('on'+type, callback);

        }

    };

    function handler(e,data){

        console.log(e);

        console.log(data);

    }

    eventRegister(document.getElementById('fInp'), 'click', {name:'kk'}, handler);

</script>

</body>

</html>

相關文章
相關標籤/搜索