标签: javascript jquery
这是我的代码
变为虚假; } 返回true; } });
我收到了错误:
Uncaught TypeError: $thisTR.find is not a function
这是jsfiddle中的代码
答案 0 :(得分:3)
您应该将元素转换为jQuery Object
jQuery
$thisTR = $(this) // not just this
Example