8

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

$('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

4 回答 4

15

也许是这样的:

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('hi')

于 2012-10-03T19:53:59.557 回答
5

@jcern 的精彩代码的修改版。

特征:

  • 如果元素有 id:仅显示#elementId
  • 如果没有 id 存在:显示element.className
  • 如果不存在类:显示附加elementinnerHtml(如果有)
  • 跳过<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;
}
于 2014-02-27T15:02:56.347 回答
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;
});
于 2012-10-10T18:25:04.383 回答
0

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

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

于 2012-10-03T20:02:04.410 回答