我正在使用这段代码:
$.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>";
这在 chrome、FF 和 IE9 中 100% 有效,但在 IE8 或 7 中完全无效。
请帮忙!