jQuery在Div中的字符处插入文本

时间:2011-10-27 08:25:43

标签: jquery text html

我有div喜欢

<div class="mycooldiv">
    bunch of text is in here and for example some # and some other cool #
</div>

如何在#处插入文字 - #可以在任何位置?

1 个答案:

答案 0 :(得分:2)

尝试使用正则表达式将#替换为您要插入的文本。

var $div = $('.mycooldiv');
$div.text($div.text().replace(/#/, 'Text to insert here');