我无法替换来自数据库的html正文中的文本

时间:2019-05-08 09:49:19

标签: javascript jquery html variables replace

我想用'$$$_img1_$$$'标签将文本p替换为来自数据库

$("body").children().each(function() {

    $(this).html($(this).html().replace('$$$_img1_$$$', variable_name));
});


$("body").children().each(function() {

    $(this).html($(this).html().replace('$$$_img1_$$$', "hahahhah"));
});

如果variable_name包含img标记 那么'$$$_img1_$$$'将被替换为图片标签<img src = ''>

1 个答案:

答案 0 :(得分:0)

尝试以下代码:

$('body').each(function() {
   var replaced = $("body").html().replace('$$$_img1_$$$','The ALL new string');
   $("body").html(replaced);
});