更改字符串中单词的格式

时间:2014-06-13 14:07:18

标签: jquery joomla

我有一个joomla菜单列表,其中的项目有“不同”,“#39;是最好的'等

每次字符串都是'我需要在文中加粗。

我打算使用jQuery。我看过像match,indexof或者使用正则表达式这样的表达式但是卡住了

1 个答案:

答案 0 :(得分:1)

你可以这样使用

$('#Menu').html($('#Menu').html().replace(/(be )/g, '<strong>be </strong>'));

Demo