我正在使用AJAX函数,结果我正在执行$('.class').each
来执行一些逻辑。
问题在于调用$(this)
来检索每个对象时,它引用的是AJAX函数而不是找到的元素。
如何引用在each
函数中找到的元素?
$.ajax({url: "myurl", success: function(result){
$(".my_class").each((index, dom) => {
console.log(($(this))); //this is the ajax funct, not the object i want
});
});