我有這樣的代碼,在裝載了mouseenter XML文件,這些文件在Firefox工作:
$(document).ready(function() {
$('.invest-port-thumb a').mouseenter(function() {
$.get(this.href, function(response){
var cName = $(response).find("fragment cName");
var cind = $(response).find("fragment cName").attr("cind");
$('#slider-name .slider-copy').html(cName);
$('#slider-indu .slider-copy').html(cind);
});
});
});
,當然它不能在IE瀏覽器正常工作。事實上,沒有任何負載。
示例XML文檔:
<fragment>
<cName cind="Industrial" stat="Active">ABC Company</cName>
<hq>Chicago, IL</hq>
</fragment>
我發現了一些奇怪的事情,當我刪除此行:
var cName = $(response).find("fragment cName");
嘗試使用$ .ajax而不是$ .get並將dataType更改爲xml – 2010-06-22 16:50:49