javascript无法在元素上应用find

时间:2015-11-02 14:20:44

标签: javascript jquery

这是我的代码

变为虚假;             }             返回true;         }     });

我收到了错误:

 Uncaught TypeError: $thisTR.find is not a function

这是jsfiddle中的代码

1 个答案:

答案 0 :(得分:3)

您应该将元素转换为jQuery Object

$thisTR = $(this) // not just this

Example