我用來更新下面的AJAX成功函數中的標籤值,但我需要知道我將如何應用此方法來更改/更新「src」的<img id="myimage" src=""/>
從AJAX成功函數更新圖像源
$.ajax({
url: 'clmcontrol_livematchupdate',
type: 'post',
dataType: 'json',
success: function (data) {
$('#mstatus').html(data.matchstatus);
// $('#myimage').... ?
},
complete: function() {
// Schedule the next request when the current one has been completed
setTimeout(ajaxInterval, 4000);
}
});
'$( 「#elementId」)。ATTR( 「SRC」,」值「);' –