优化jQuery选择器的最佳方法

时间:2018-03-29 15:54:30

标签: jquery performance jquery-selectors

我需要选择tr

thead
$("#table > thead > tr");

与此有很大不同:

$("#table").find("thead").find("tr");

有没有办法优化这个jquery选择器,什么是最好的?

0 个答案:

没有答案