具有相同处理函数的addEventListener到多个元素

时间:2017-08-09 16:51:08

标签: javascript this addeventlistener

我的处理程序功能:

function move(currentElement){
    //currentElement is the element calling the function.
    //code;
}

我的addEvent代码:

var labels = document.getElementsByTagName('label');
for(i = 0; i < labels.length; i++)
    labels[i].addEventListener('click', function(){
        move(this);
    });

我有多个标签要分配处理函数。我的方式不起作用:/

0 个答案:

没有答案