以下代碼在chrome和firefox中工作,但出現錯誤「由於錯誤c00ce514而無法完成操作」。我搜索了它,發現它與設置適當的字符集編碼有關,但我正在用這個加載一個圖像(該網址最終會像http://www.mysite.com/images/this_image.jpg那樣)。我如何得到這個在IE中工作?Internet Explorer - 由於錯誤而無法完成操作c00ce514
var originalSRC = $("#bigImage").attr("src");
$(".tinyThumb").mouseenter(function(){
$("#oiLoad").html('<img src="http://mysite.com/images/oiload.gif">');
var oldSRC = $(this).attr("src");
var newSRC = "http://"+window.location.host+oldSRC.replace("tiny_thumbs/xtn_","");
$("#bigImage").load(newSRC,function(e){
$("#oiLoad").empty();
$("#bigImage").attr("src",newSRC);
});
});
不是真的答案被關閉,但我也注意到你不關閉你的img標籤。 $(「#oiLoad」)。html(''); 應該是 $(「#oiLoad」)。html(''); – 2010-12-22 16:56:38