我正在尝试使用this
内的.each()
访问对象,并希望使用.find()
,但在控制台中,.find
是未定义的函数。
data=$(data);
$("tr", data).each(function(){
var est = this.find(".estname a").html;
});
我也试过这个:
data=$(data);
$("tr", data).each(function(){
var est = $(this).find(".estname a").html;
});
在控制台中,它显示function()
而不是任何对象:(
答案 0 :(得分:11)
应该是:
var est = $(this).find(".estname a").html();
在html
函数后使用括号。