我正在使用 each 遍历 DOM 元素,但是当元素在 .each 循环中可用时,它们将不接受 jQuery 绑定事件。
$('#products .page_item').mouseover(function(){
console.log('this works, adding the mouseover to every selected element');
});
$('#products .page_item').each(function(index, element){
element.mouseover(function(){
console.log("this throws 'not a function'");
});
});
如何使每个元素在 .each 循环中可用,以便将事件绑定到它们?
谢谢大家。
(我以这种方式迭代元素,因此我可以有条件地从绑定 FWIW 中排除一些元素。)