在javascript中找到两个DOM节点的第一个共同父节点的最佳方法是什么?

时间:2010-03-16 10:59:30

标签: javascript dom selection getselection

我的问题正是如此,但在上下文中我想检查选择对象,比较anchorNode和focusNode,如果它们不同,则找到第一个公共父元素。

var selected = window.getSelection();
var anchor = selection.anchorNode;
var focus = selection.focusNode;

if ( anchor != focus ) {
   // find common parent...
}

5 个答案:

答案 0 :(得分:5)

我会尝试这样的事情,假设没有JS库:

function findFirstCommonAncestor(nodeA, nodeB, ancestorsB) {
    var ancestorsB = ancestorsB || getAncestors(nodeB);
    if(ancestorsB.length == 0) return null;
    else if(ancestorsB.indexOf(nodeA) > -1) return nodeA;
    else if(nodeA == document) return null;
    else return findFirstCommonAncestor(nodeA.parentNode, nodeB, ancestorsB);
}

使用此实用程序:

function getAncestors(node) {
    if(node != document) return [node].concat(getAncestors(node.parentNode));
    else return [node];
}

if(Array.prototype.indexOf === undefined) {
    Array.prototype.indexOf = function(element) {
        for(var i=0, l=this.length; i<l; i++) {
            if(this[i] == element) return i;
        }
        return -1;
    };
}

然后你可以拨打findFirstCommonAncestor(myElementA, myElementB)

答案 1 :(得分:2)

这种方式相当简单:

var fp = $(focus).parents();
var ap = $(anchor).parents();
for (var i=0; i<ap.length; i++) {
  if (fp.index(ap[i]) != -1) {
    // common parent
  }
}

循环浏览一个元素的parents(),然后使用index()查看它们是否包含在另一个元素的parents()中,直到找到匹配(或不匹配)。

答案 2 :(得分:1)

//看起来它应该相当简单,即使没有库或indexOf

document.commonParent= function(a, b){
 var pa= [], L;
 while(a){
  pa[pa.length]=a;
  a= a.parentNode;
 }
 L=pa.length;
 while(b){  
  for(var i=0; i<L; i++){
   if(pa[i]==b) return b;
  }
  b= b.parentNode;
 }
}

答案 3 :(得分:0)

由于这个问题和已接受的答案已经过时,我建议使用更现代的 DOM API,Range

function findFirstCommonAncestor(nodeA, nodeB) {
    let range = new Range();
    range.setStartBefore(nodeA);
    range.setEndAfter(nodeB);
    // There's a compilication, if nodeA is positioned after
    // nodeB in the document, we created a collapsed range.
    // That means the start and end of the range are at the
    // same position. In that case `range.commonAncestorContainer`
    // would likely just be `nodeB.parentNode`.
    if(range.collapsed) {
        // The old switcheroo does the trick.
        range.setStartBefore(nodeB);
        range.setEndAfter(nodeA);
    }
    return range.commonAncestorContainer;
}

答案 4 :(得分:0)

为此有很多 DOM API:compareDocumentPosition

事情是这样的:

    /**
     * Returns closest parent element for both nodes.
     */
    function getCommonParent(one, two){
        let parent = one.parentElement;
        if(one === two) { //both nodes are the same node.
            return parent;
        }
        const contained = Node.DOCUMENT_POSITION_CONTAINED_BY;
        let docpos = parent.compareDocumentPosition(two);

        while(parent && !(docpos & contained)) {
            parent = parent.parentElement;
            docpos = parent.compareDocumentPosition(two);
        }
        return parent;
    }
相关问题