自定义类中Jquery Each里取不到值
发布网友
发布时间:2024-10-15 21:55
我来回答
共1个回答
热心网友
时间:2024-12-01 12:24
第二个this在each里指的的是jQuery的对象
改成这样你试试
function Mytest(){
this.ID = 3;
this.Method = function(dd){
var self = this;
alert(self.ID);
$.each(dd, function(idx, value){
alert(self.ID);
});
}
}