最佳答案
在jQuery中选择子节点可以使用children(),也可以使用find()。
例如:
$(this).children('.foo');
给出的结果与:
$(this).find('.foo');
现在,哪一个选择是最快的或首选的,为什么?