1

如何提取与光标位置关联的标签。在下面的 HTML 示例中,当我的光标位于“关联”时,我想获取有关将所有标签添加到文本“关联”的信息。

<html>
<body>
How <b>to <font color="#FF000">extract<i> the tags associated with </i>Cursor </b>location</font>
</body>
</html>

在这里我想得到“b,字体,我”

是否有可能获得这些信息。

4

1 回答 1

0

我不太确定你在问什么,但我假设你在谈论常规光标而不是插入符号。

你可以这样做:

var lastElementEntered = null;

document.onmouseover = function(e) {
    e = e || window.event;
    lastElementEntered = e.target || e.srcElement;
};

document.onmouseout = function() {
    lastElementEntered = null;
}

function getCursorElementPath() {
    var tagNames = [];
    if (lastElementEntered) {
        var node = lastElementEntered;
        while (node && node != document.body) {
            tagNames.unshift(node.nodeName);
            node = node.parentNode;
        }
    }
    return tagNames;
}

alert( getCursorElementPath() );
于 2013-02-07T11:16:37.107 回答