这里的jQuery节点遍历和前面的jQuery选择器有什么区别?
例如$("prev~sibings")和$("prev").siblings(),还有$("prev").next()和$("prev + next"),$("parent").children(".className")和$("parent>.className")等等,感觉大部分都能找到对应的表达方法(除了parent()和parents()方法之外)。是否可以认为,jQuery子节点遍历和jQuery选择器中间大部分都有重合???感觉选择器的方式要简单一些,是不是这样?