我嘗試加載圖像。 但每次控制檯日誌設置「錯誤」。我想從遠程網站加載圖像到div,使用ajax + jquery
我的錯誤在哪裏? 第一種方式
$('#cont').click(function() {
$.ajax({
type: "GET",
url: "http://pp.vk.me/c608129/v608129926/13d7/M78M4KmekWI.jpg",
dataType: "image/gif",
success: function(img) {
i = new Image();
i.src = img;
$(this).appned(i);
},
error: function(error, txtStatus) {
console.log(txtStatus);
console.log('error');
}
});
});
'append'而不是'appned' – Ani