码迷,mamicode.com
首页 > 其他好文 > 详细

once

时间:2015-06-04 18:58:07      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

var once = function(obj, evtType, handler) {
    var f = function() {
        //console.log(arguments)
        handler.apply(window, arguments)
        obj.removeEventListener(evtType, f, false)
    }

    obj.addEventListener(evtType, f, false)
}

once(document.querySelector(‘button‘), ‘click‘, function(event) {
    console.log(event)
})

 

once

标签:

原文地址:http://www.cnblogs.com/jzm17173/p/4552408.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!