gpt4 book ai didi

jquery 选择两个非兄弟元素之间的元素

转载 作者:行者123 更新时间:2023-12-01 02:50:14 25 4
gpt4 key购买 nike

(我已经删除了属性,但它是一些自动生成的 HTML。)

<img class="p"/>
<div> hello world
<p>
<font><font size="2">text.<img class="p"/>
some text
</font></font>
</p>
<img class="p"/>
<p> <font><font size="2">more text<img class="p"/>
another piece of text
</font></font>
</p><img class="p"/> some text on the end
</div>

当悬停在其中第一个元素时,我需要对两个最接近的(在 HTML 代码中)img.p 元素之间的所有文本应用一些带有背景的突出显示。我不知道该怎么做。假设我将鼠标悬停在第一个 img.p 上 - 它应该突出显示 hello worldtext. 而没有其他内容。

现在最糟糕的部分 - 我需要背景在鼠标离开时消失。

我需要它来处理任何可能的 HTML 困惑。以上只是一个示例,文档的结构会有所不同。

提示:只要不改变输出文档的外观,在绑定(bind)悬停和放置一些跨度等之前处理整个 html 就可以了。

最佳答案

Processing the whole html before binding hover and putting some spans etc. is ok

您当然必须这样做,因为您无法设置文本节点的样式,只能设置元素的样式。

这是一个您可以用来从脚本执行此操作的函数。 (不幸的是,jQuery 在这里没有多大用处,因为它不喜欢处理文本节点。)

// Wrap Text nodes in a new element of given tagname, when their
// parents contain a mixture of text and element content. Ignore
// whitespace nodes.
//
function wrapMixedContentText(el, tag) {
var elementcontent= false;
for (var i= el.childNodes.length; i-->0;) {
var child= el.childNodes[i];
if (child.nodeType===1) {
elementcontent= true;
wrapMixedContentText(child, tag);
}
}
if (elementcontent) {
for (var i= el.childNodes.length; i-->0;) {
var child= el.childNodes[i];
if (child.nodeType===3 && !child.data.match('^\\s*$')) {
var wrap= document.createElement(tag);
el.replaceChild(wrap, child);
wrap.appendChild(child);
}
}
}
}

下面是一些可用于在其他节点之间选择节点的函数。 (同样,jQuery 目前没有此功能。)

// Get array of outermost elements that are, in document order,
// between the two argument nodes (exclusively).
//
function getElementsBetweenTree(start, end) {
var ancestor= getCommonAncestor(start, end);

var before= [];
while (start.parentNode!==ancestor) {
var el= start;
while (el.nextSibling)
before.push(el= el.nextSibling);
start= start.parentNode;
}

var after= [];
while (end.parentNode!==ancestor) {
var el= end;
while (el.previousSibling)
after.push(el= el.previousSibling);
end= end.parentNode;
}
after.reverse();

while ((start= start.nextSibling)!==end)
before.push(start);
return before.concat(after);
}

// Get the innermost element that is an ancestor of two nodes.
//
function getCommonAncestor(a, b) {
var parents= $(a).parents().andSelf();
while (b) {
var ix= parents.index(b);
if (ix!==-1)
return b;
b= b.parentNode;
}
return null;
}

可能的用途:

var outer= document.getElementById('myhighlightingimagesdiv');
wrapMixedContentText(outer, 'span');

var ps= $('#myhighlightingimagesdiv .p');
ps.each(function(pi) {
// Go up to the next image in the list, or for the last image, up
// to the end of the outer wrapper div. (There must be a node
// after the div for this to work.)
//
var end= pi===ps.length-1? outer.nextSibling : ps[pi+1];

var tweens= $(getElementsBetweenTree(this, end));
$(this).hover(function() {
tweens.addClass('highlight');
}, function() {
tweens.removeClass('highlight');
});
});

关于jquery 选择两个非兄弟元素之间的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2514125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com