jQuery prev()和:prev?
之间的确切区别是什么?我的意思是就他们接受的内容而言,返回...我问这个问题,因为我之前尝试添加$()选择器后出现错误..
答案 0 :(得分:2)
我认为:prev
不是一个有效的jQuery选择器。可能是您错误的原因。
答案 1 :(得分:1)
.prev()is a method which you can call on any jquery object associated to a dom element. It will find the prev sibling element. If we pass selector to
prev`方法只有在选择器匹配时才能找到prev兄弟。