不要笑,這是我在試圖讓每個錨鏈接href和更換圖像源。產品縮略圖IMGJQuery的每個錨的href替換縮略圖IMG SRC
<script>
jQuery.noConflict();
jQuery(document).ready(function($) {
//var findImage = $('dd.variation-File ul li a').attr('href');
//get the anchor link to image
x=$('dd.variation-File ul li a').toArray();
//replace default thumbnail with anchor link from x
y=$('td.product-thumbnail img').toArray();
y.each().attr['src'].replace(this, x);
});
</script>
在我們的購物車頁面兩掌有一個表格顯示購物車信息。有多種圖像(預覽)和如果圖像上傳然後有一個dd.variation-File ul li
與錨,我只是想寫一個劇本,如果dd.variation-File ul li a
存在,在dd.variation-file ul li a
.product-thumbnail img
感謝您的幫助了小白:)
你能發佈HTML嗎? – Aarmora
http://pastebin.com/ckjFmPiN – Derek