我有div
喜欢
<div class="mycooldiv">
bunch of text is in here and for example some # and some other cool #
</div>
如何在#
处插入文字 - #
可以在任何位置?
答案 0 :(得分:2)
尝试使用正则表达式将#替换为您要插入的文本。
var $div = $('.mycooldiv');
$div.text($div.text().replace(/#/, 'Text to insert here');