次のコード スニペットは Internet Explorer では機能しません。Web ツール (F12) からコンソールにエラーは表示されません。IE の場合、get で取得した XML は空です。ヒントはありますか?
$.get('http://x.x.x./xxx.aspx?param=' + par, function(data) {
$(data).find('item').each(function(){
//for some reason IE never enter this each cycle
alert("that alert works with Chrome and Firefox but not with IE...")
}
}
編集: このコード スニペットは、SharePoint WSS3 内の ASPX ページで実行されていることがわかります。IE は、ドキュメント モードとして IE 5 Quirks を使用して IE10 互換表示で起動します。また、Jquery 1.9.0 を使用しています。