jQuery替换div中的多个单词

时间:2014-09-05 13:20:17

标签: javascript jquery

我得到了这个代码来替换div中的一个单词:

HTML:

<div id="test">
     An article about John and Steve
</div>

jQuery的:

$('#test').html(function(i, v) {
    return v.replace(/John/g, 'Peter');
});

所以John被Peter取代,但我怎么能用Beavis取代Steve呢?我试过了:

$('#test').html(function(i, v) {
        return v.replace(/John/g, 'Peter');
        return v.replace(/Steve/g, 'Beavis');
    });

我该怎么做?

1 个答案:

答案 0 :(得分:3)

使用.replace()的链接:

$('#test').html(function(i, v) {
     return v.replace(/John/g, 'Peter').replace(/Steve/g, 'Beavis');
});