0
我使用此代碼返回使用$(數據)值:IE7不會過濾AJAX .filter
$.get('getdetails.php?gid='+getid, function (data) {
//query the jq object for the values
var person = $(data).filter('NAME').html();
// this works fine and shows the content from the getdetails.php page
alert (data);
// this shows nothing
alert(person);
});
這裏是getdetails.php位
echo"<NAME>barry</NAME>";
這個工程100%的鉻,FF和IE9,但在IE8或7中完全沒有。
請幫忙!
'$ .parseXML' ... – SLaks
請更具體地回答您的問題?我有一個谷歌爲$ .parseXML,但我想從你的更多信息,如果那可以嗎? – Barry
你能提供一個演示這個的小提琴嗎? IE8的開發工具欄中是否有錯誤? –