2017-03-06 10 views
0
<span id="description"> 
<?php echo $itemdesc ?> 
</span> 

を動作していない(グローバル)タグ上のPHPを出力し、このような何かを表示するURLの一部:/gのjqueryの.replace機能に

This%2520is%2520the%2520 %2520thing%2520 %2520purchased%2520 

そして、何が欲しいがこれです:

This is the thing purchased 

ここに私のコードです。私の問題は、/ gタグ(グローバル)が動作していないようです。

<script> 
    oldhtml = $('#description').html(); 
    var newhtml = oldhtml.replace("%2520"/g, " "); 
    $('#description').html(newhtml); 
</script> 

答えて

2

代わりの"は、正規表現をカバーするために/を追加します。
これは/%2520/gです。
"%2520'/g, there is no regex to associate g`を使用すると。

var newhtml = oldhtml.replace(/%2520/g, " "); 
$('#description').html(newhtml); 

また、あなたが使用することができます

.replaceAll("%2520"," ");