标签: jquery performance jquery-selectors
我需要选择tr
tr
thead
$("#table > thead > tr");
与此有很大不同:
$("#table").find("thead").find("tr");
有没有办法优化这个jquery选择器,什么是最好的?