标签: jquery performance
以下两者之间是否存在性能差异?
$("#divId :input")
和
$("#divId").find(":input")
$(":input", "#divId")
最后的变化在这里https://api.jquery.com/jQuery/#jQuery-selector-context
(与Comma-separated jQuery selectors performance不太一样)
答案 0 :(得分:0)
以id开头的选择器是最快的,这有两个原因:
第一个选项和第二个选项之间的差异很小。