文章摘自:Ajax实例:获得站点文件内容
一个简单的Ajax实例:选择一部著作,会通过 Ajax 实时获得相关的名字。
把4个html文件放到 web站点 的同一个文件下。
index.html
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>一个简单的不涉及服务器的Ajax实例</title> <script type="text/javascript"> // 声明一个引用 XMLHttpRequest 的变量 var xhr = null; // 选择一个著作时调用的函数 function updateCharacters() { var selectShow = document.getElementById("selShow").value; if (selectShow == "") { document.getElementById("divCharacters").innerHTML = ""; return ; } // 实例化一个 XMLHttpRequest 对象 if (window.XMLHttpRequest) { // 非IE xhr = new XMLHttpRequest(); } else {