jQuery / Javascript查找并替换所有实例

时间:2012-03-14 19:16:07

标签: javascript jquery replace

  

可能重复:
  Replace all instances of a pattern with regular expressions in Javascript / jQuery
  How can I use jQuery to style /parts/ of all instances of a specific word?

说我有代码:

<div class="replace">
     <i>Blah</i>
     <u>Blah</u>
</div>

现在,我想用div替换div中的所有<

如果我使用$('#div').html().replace('<','somethingElse');,它只会替换第一个实例。

如何更换所有实例?

由于

1 个答案:

答案 0 :(得分:9)

使用正则表达式

"anyString".replace(/</g,'somethingElse');

如果你想在div中替换它,那就试试吧。

$('#div').html($('#div').html().replace(/</g,'somethingElse'));