我想用'$$$_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 = ''>
答案 0 :(得分:0)
尝试以下代码:
$('body').each(function() {
var replaced = $("body").html().replace('$$$_img1_$$$','The ALL new string');
$("body").html(replaced);
});