Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从最近的元素中找到特定的类匹配
$(this).closest("tr");
我需要从这一点找出这个 tr 是否有一个类名 testlog3 。
您可以使用最接近的函数,如下所示:
$(this).closest('tr.testlog3');
使用hasClass:
hasClass
if($(this).closest('tr').hasClass('testlog3')) { // ...