从文本js替换几个标签

时间:2010-06-10 08:15:30

标签: replace javascript

我想改变这段文字:

  

[¿Cómoseprocede cuando la mujer o   pareja de un< B个fallecido< / B个PIDE   lacongelacióndelsemen]

所以我想删除],[和< B个;< / B个

有没有办法在同一时间改变一切?

我试过了:

function replaceThings(){
    jQuery(".summary").each(function(){
        var t = jQuery(this).text();
        jQuery(this).text(t.replace(/& lt;/g, ''));
        jQuery(this).text(t.replace('[', ''));
        jQuery(this).text(t.replace(']', ''));
    });

但只能替换]。

提前致谢

1 个答案:

答案 0 :(得分:0)

function replaceThings(){
    jQuery(".summary").each(function(){
        var t = jQuery(this).text();
        t = t.replace(/& lt;/g, ''));
        t = t.replace('[', ''));
        t = t.replace(']', ''); 
        jQuery(this).text(t);
    });