让我说我有这个DOM结构
<body> <p> Hello <i>how <b>are</b> you</i> and <i>what <b>are <tt>you</tt> going</b> to</i> eat tonight? </p> </body>
使用jQuery我想知道第一个共享父项
<b>are</b>
和
<tt>you</tt>
从下到上,这将是< p>不是<身体>标签.
关于如何使用jQuery确定第一个共享父项的任何想法?
解决方法
喜欢这个:
$(a).parents().filter(function() { return jQuery.contains(this,b); }).first();
如果b是选择器(与DOM元素相反),则可以将其更改为:
$(a).closest(':has(b)');
这是较短的,但要慢得多.
a和b的顺序是无关紧要的;如果b更接近父母,它会更快.