私はこのコードを使用しています:
$.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 ではまったく機能しません。
助けてください!