“这个”不能在.each()中使用.find()吗?

时间:2012-06-03 19:10:31

标签: javascript jquery

我正在尝试使用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()而不是任何对象:(

1 个答案:

答案 0 :(得分:11)

应该是:

var est = $(this).find(".estname a").html();

html函数后使用括号。