2014-01-06 65 views
0

我現在有一個在線商店的購物車這個代碼替換文本:jQuery來與圖像

<span class="ShoppingList_RemoveCheckBox"> 
<a onclick="document.My_Account_Shopping_List_Detail_Content.rcuid.value="475"; 
document.My_Account_Shopping_List_Detail_Content.FormSubmittedByLink.value="submittedByRemoveLink"; document.My_Account_Shopping_List_Detail_Content.submit(); return false;" href="noURL">Remove </a> 
</span> 

我需要做的是替換圖像的「刪除」的文字是什麼,這樣用戶就可以點擊圖片從購物車中刪除一件商品。

如何在不影響鏈接其餘部分的功能的情況下做到這一點?

我第一次嘗試這種選擇的內容:

$(".ShoppingList_RemoveCheckBox").filter(function(){ 
return $(this).html() == "a"; 

要選擇的代碼,但我不知道是否有隻更改文本的方式。我知道那裏是.text()Jquery,但是你不需要有一個特定的id來引用它嗎?

回答

0
$('.ShoppingList_RemoveCheckBox a').html('<img src="remove.gif" />') 
+0

完美地工作!非常感謝! – laustewa14

1
$("span.ShoppingList_RemoveCheckBox a:contains(Remove)").html($("<img/>", { src: imageURL }));