获取选择器的元素路径

时间:2012-09-28 16:48:21

标签: jquery dom xpath element

遇到麻烦并基本上尝试创建一个可用作选择器的变量。例如

$('a').click(function(){
   var selector = $(this).dompath();
});

HTML:

html
    body
        div
            div /div
        /div
       ul
         li
         li
       /ul
    div
        ul
           li
           li
           li hello world
        /ul
   /div
   body
html

这将返回类似

的内容
path = html body div ul li:contains('hello world')

然后我可以在选择器中使用它来选择这个div,所以如果我喜欢

$(path).text() would return "hello world"
非常感谢!

4 个答案:

答案 0 :(得分:13)

也许是这样的:

function dompath( element )
{
    var path = '';
    for ( ; element && element.nodeType == 1; element = element.parentNode )
    {
        var inner = $(element).children().length == 0 ? $(element).text() : '';
        var eleSelector = element.tagName.toLowerCase() + 
           ((inner.length > 0) ? ':contains(\'' + inner + '\')' : '');
        path = ' ' + eleSelector + path;
    }
    return path;
}

这修改了另一个问题的方法,只有当标签没有子标签时才通过:contains()运算符添加标签的全文内容。

我用这种方法测试过:

$(document).ready(function(){
    $('#p').click(function() {
      console.log(dompath(this));
    });
});

反对这个:

<html>
    <body>
        <div>
            <div> </div>
        </div>
       <ul>
         <li></li>
         <li></li>
       </ul>
       <div>
         <ul>
           <li id="p">hi</li>
           <li></li>
           <li id="p2">hello world</li>
        </ul>
       </div>
   <body>
<html>

点击p的结果然后输出为:

  

html body div ul li:contains(&#39; hi&#39;)

答案 1 :(得分:3)

@jcern`s fantastic code的修改版本。

特点:

  • 如果元素具有ID:仅显示#elementId
  • 如果没有ID:显示element.className
  • 如果没有上课:显示element,附加innerHtml(如果有)
  • 跳过<body><html>元素以缩短输出
  • 不依赖于jQuery

function dompath(element) {
    var path = '',
    i, innerText, tag, selector, classes;

    for (i = 0; element && element.nodeType == 1; element = element.parentNode, i++) {
        innerText = element.childNodes.length === 0 ? element.innerHTML : '';
        tag = element.tagName.toLowerCase();
        classes = element.className;

        // Skip <html> and <body> tags
        if (tag === "html" || tag === "body")
            continue;

        if (element.id !== '') {
            // If element has an ID, use only the ID of the element
            selector = '#' + element.id;

            // To use this with jQuery, return a path once we have an ID
            // as it's no need to look for more parents afterwards.
            //return selector + ' ' + path;
        } else if (classes.length > 0) {
            // If element has classes, use the element tag with the class names appended
            selector = tag + '.' + classes.replace(/ /g , ".");
        } else {
            // If element has neither, print tag with containing text appended (if any)
            selector = tag + ((innerText.length > 0) ? ":contains('" + innerText + "')" : "");
        }

        path = ' ' + selector + path;
    }
    return path;
}

答案 2 :(得分:0)

您需要枚举要为其创建查询的元素的所有父项,并为每个父项添加一个选择器,例如:父节点的名称或包含contains-test的名称,如果该父节点需要该测试。唯一可以确定的方法是,如果需要包含测试,可能是在每个步骤中对当前父级应用当前查询,如果查询仅返回目标元素,则检查。然后添加contains-test,如果匹配太多......

我写了Greasemonkey script这样做。首先,它收集在另一个树中找到目标元素所需的所有元素(&#34;模板&#34;),然后将其转换为查询。但是,它使用属性(特别是class / id / name)而不是匹配的文本,以及位置,如果属性不够独特,因为我认为在大多数情况下文本的变化比结构更频繁。

答案 3 :(得分:0)

请求有点愚蠢,因为更多更好的方式。

为元素分配唯一ID以便以后快速引用它,或者如果已经分配了ID,则使用它。

//
// generate a unique (enough) id for an element if necessary
//
function getUID(id) {
    if(window["uidCounter"]==null)
        window["uidCounter"]=0;
    return id||( (window["uidCounter"]++) + "_" + (new Date()).getTime() );
}
//
// use an #ID selector
//
$('a').click(function(){
   var uid = getUID( $(this).attr('id') );
   $(this).attr('id', uid);
   var selector = "#" + uid;
});