无论父/子关系等如何,如何找到最接近$(this)节点的节点具有某个属性,例如class =“field”?
答案 0 :(得分:3)
$(this).closest(".field");
答案 1 :(得分:1)
这应该可以解决问题(假设.field是其中的父级):
$(this).closest(".field");
答案 2 :(得分:1)
$(this).parents(".field:first")
答案 3 :(得分:0)
这不是我最接近的意思,我最终这样做了:
$(this).parent('.jdpicker_w').next('.spacer').children()