-1

我需要获取子节点的父节点

这是我当前的代码

console.log (($(editor.selection.getNode()).parent()[0]));

这会返回类似这样的东西

<ol>....</ol>

但我需要的是只捕捉 Ol 元素

所以有人可以帮忙吗?

4

2 回答 2

0

如果我理解正确,您正在尝试获取标签名称。您可以使用 tagName 属性从元素中获取标签名称。尝试这个

console.log (($(editor.selection.getNode()).parent()[0].tagName));
于 2013-06-27T05:13:59.503 回答
0

HTML

<ol id="h1">
    <li>I</li>
    <li>II</li>
</ol>
<ol id="h2">
    <li>I</li>
    <li>II</li>
</ol>

jQuery

$(document).ready(function () {
    $('li').click(function(){
        alert($(this).parent().attr('id'));
        $(this).parent().css('background-color', 'red');
    });
});

工作演示http://jsfiddle.net/SB659/

参考http://api.jquery.com/parent/

于 2013-06-27T05:25:02.313 回答