can anyone of you tell me how to use ajax with IE8? (ActiveXObject) is not working here.
1条回答 默认 最新
weixin_33686714 2010-09-30 05:37关注IE8 supports the XMLHttpRequest object. You can use that to do ajax. The page also has an example:
var client = new XMLHttpRequest(); client.onreadystatechange = handler; client.open("GET", "unicorn.xml"); client.send();解决 无用评论 打赏 举报