标签: ajax
你们中的任何人都可以告诉我如何在IE8中使用ajax吗? (ActiveXObject)在这里不起作用。
答案 0 :(得分:1)
IE8支持XMLHttpRequest对象。你可以用它来做ajax。该页面还有一个例子:
var client = new XMLHttpRequest(); client.onreadystatechange = handler; client.open("GET", "unicorn.xml"); client.send();