为什么这个jquery代码不起作用?

时间:2018-02-25 17:39:54

标签: jquery html

我编写这个用于替换文本的jquery代码,但是这段代码不起作用。 这是帖子部分代码:

<div class="post-text" >
 <p>&nbsp;#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页面的末尾。 你能帮帮我吗?

0 个答案:

没有答案