我的处理程序功能:
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);
});
我有多个标签要分配处理函数。我的方式不起作用:/