jQuery添加文本跨越一个div

前端之家收集整理的这篇文章主要介绍了jQuery添加文本跨越一个div前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<div id="tagscloud">
<span></span>
</div>

您好,我将如何在span内添加一些文本,例如:< span> ** tag cloud **< / span>

编辑:
实际上跨度有一个id

<div id="tagscloud"> <span id="WebPartCaptionWPQ2"></span> </div>

解决方法

您可以使用:
$("#tagscloud span").text("Your text here");

相同的代码也将适用于第二种情况。您还可以使用:

$("#tagscloud #WebPartCaptionWPQ2").text("Your text here");
原文链接:https://www.f2er.com/jquery/184847.html

猜你在找的jQuery相关文章