我想改变这段文字:
[¿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(']', ''));
});
但只能替换]。
提前致谢
答案 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);
});