gpt4 book ai didi

javascript - 帮助 jquery 选择器

转载 作者:太空宇宙 更新时间:2023-11-03 19:47:35 25 4
gpt4 key购买 nike

您好,请引用以下HTML代码:

<div id="content">
<p>
<font size='2'>
<img src="something.jpg" width="500" height="500" />
this is the text content. this is the text content. this is the text content...
</font>
</p>
</div>

这是从我的网络应用程序的管理部分生成的 html 代码。我不能修改它,也不能改变上面代码的结构。它是动态生成的。

我需要使用 jquery wrap() 方法将文本内容包装在 html 元素中,这样我就可以在文本内容而不是 img 元素上放置一些 css。

注意:id 为“content”的 div 元素是我自己的,我只能使用 HTML 访问它。

请问如何做到这一点?

谢谢

最佳答案

这是 jQuery 的方式

$("p > font")
.contents()
.filter(function() {
return this.nodeType == 3;
}).wrap('<span style="color:#FF0000" />');

You can Demo it here http://www.jsfiddle.net/K8WNR/

关于javascript - 帮助 jquery 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4084095/

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