我正在处理论坛网页,但不允许在网页中编辑 HTML。我想隐藏文本,直到悬停。这是 HTML 代码的粗略示例:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>nextUntil demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<dl>
<dd class="postprofile-info">
<span>
<span>
<img src="image here">
</span>
</span>
"This is the text I want to surround in a div"
<br>
<span class="label"></span>
"Text from here on out can be ignored"
<br>
</dd>
<dl>
</body>
</html>
我知道有 .nextUntil() 和 .wrapAll() 函数,但我就是无法让它正常工作。我遇到的另一个问题是比较标签和
标签之间的信息,以确保我只将我想要的文本包装在一个 div 中。我的目标是将该文本包装在一个 div 中,以便我可以给它一个类并使用 css 对其进行操作。
编辑 1: 我没有提供任何 JS 的原因是因为我只测试了使用 .nextUntil() 和 .wrapAll() 的片段。这就是我所拥有的一切,而且是零碎的:
(只是测试看看这是否可行:)
$( ".postprofile-info" ).nextUntil( "dt" ).css( "background-color", "red" );
(另一个测试)
$('form > span').each(function(){
$(this).next('p').andSelf().wrapAll('<div class="test"/>');
});
(另一个测试)
var nodelist = document.getElementsByTagName("dd").length;
for (i = 0; i < nodelist-1; i++) {
var TextDd = document.getElementsByTagName("dd")[i].innerHTML;
if (TextDd === "For helping in the construction of the CGDT Forum"){
$('form > span').each(function(){
$(this).next('p').andSelf().wrapAll('<div class="test"/>');
});
}
}