jQuery在其他函数内部使用

时间:2018-07-13 15:42:01

标签: javascript jquery ajax this each

我正在使用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

                });

         });

0 个答案:

没有答案