如果還沒有加載,我需要加載圖像。 對於這個我使用的誤差函數是這樣的:檢查圖像是否存在,如果沒有加載它
$.ajax({
type: "POST",
url: "inc/functions.php",
data: { productID: productIDVal, action: "addToCart"},
success: function(theResponse) {
busy=false;
$('#buyButton')
.error(function(){
var t = $("<img id='buyButton' src='images/checkout.png' />");
$.append(t);
});
}
});
但它無法正常工作。我在這裏做錯了什麼?
在此先感謝。
我想你需要:'$(本)。 append(t);' – Andre 2010-12-12 18:59:32