2016-05-12 15 views

答えて

0

はいです。このような何か作業をする必要があります:

$("body").html($("body").html().replace(new RegExp("cart", 'g'), "<img src='#'/>")) 

フィドル: https://jsfiddle.net/c7queker/

0
あなたは replace方法でこれを行うことができ

$('div').html(function(_,t){ 
 
    var src = 'https://cdn0.iconfinder.com/data/icons/typicons-2/24/shopping-cart-24.png'; 
 
    return t.replace(/cart/g, '<img src="'+src+'">') 
 
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<div>I would like to use jQuery to replace the word 'cart' through out my entire website document with an image icon or img src is it possible to only target the word 'cart' and do so?</div>

0

あなたはすべての識別可能jqueryのを使用する必要がありますあなたの望む結果を生み出し、フォローインを使うかもしれないg jqueryコードサンプルを使用してすべてのカートを画像に置き換えます。

$('.container ul li a').html(function(i,html) { 
    return html.replace('cart', '<img src = "yourImgURL" alt = "' + html + '" />'); 
}); 
関連する問題