前端之家收集整理的这篇文章主要介绍了
Jquery:查找文本并替换,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<div id="id1">
<p>
apple
</p>
<p>
ball
</p>
<p>
cat
</p>
<p>
dogsss
</p>
</div>
如何使用jquery将dogsss更改为dollsss?
你可以试试
$('#id1 p').each(function() {
var text = $(this).text();
$(this).text(text.replace('dog','doll'));
});
http://jsfiddle.net/2EvGF/
你可以使用.html()和/或进一步根据你的需要.replace()调用
原文链接:https://www.f2er.com/jquery/183943.html