我想使用jquery自動更新圖像鏈接。 我可以使用下面的jquery代碼來獲取從分貝的鏈接部分: /data/image_smll.png my final link to work needs to be like:<img src="../components/com/opencart/image/data/image_smll.png" alt="PC Part" width="110" height="42">
我試圖在使用後跨度src="../components/com/opencart/image<span id="cimage"></span>"
但id是打破代碼。我不確定我在這裏做了正確的事情。幫幫我。 我想做同樣的事情正常鏈接如何在頁面上自動更新圖像鏈接
$('#name').change(function(){
var name = $('#name').val();
if ($.trim(name) !='') {
$.post('http://site99.com/action/subs/name2.php', {name: name}, function(data) {
$('#cimage').text(data);
});
}
});
我肯定有一個更好的方式來做到這一點,但我不是一個卷軸dev的傢伙 – user3383794
'$('selector_for_IMG-elment')。attr('src','new_url_for_image')'我的意思是你可以直接訪問IMG元素並設置SRC屬性 –