我编写这个用于替换文本的jquery代码,但是这段代码不起作用。 这是帖子部分代码:
<div class="post-text" >
<p> #s-product-name# دانلود نرم افزار #e-product-name#</p>
</div>
这是我的jquery代码:
if ($(".post-text").html().indexOf("#s-product-name#") > 0) {
$(".post-text").html($(".post-text").html().replace(/#s-product-name#/g , "<a id='s-product-name' >"));
$(".post-text").html($(".post-text").html().replace(/#e-product-name#/g , "</a>"));
}
jquery代码位于HTML页面的末尾。 你能帮帮我吗?