Ajax获得站点文件内容实例
程序员文章站
2022-06-04 23:12:32
一个简单的ajax实例:选择一部著作,会通过 ajax 实时获得相关的名字。 把4个html文件放到 web站点 的同一个文件下。 index.html 复制代码 代码如下...
一个简单的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 {
// ie
xhr = new activexobject("microsoft.xmlhttp");
}
xhr.onreadystatechange = callbackhandler;
url = selectshow + ".html";
xhr.open("post", url, true);
xhr.send(null);
}
// this is the function that will repeatedly be called by our
// xmlhttprequest object during the life cycle of request
function callbackhandler() {
if (xhr.readystate == 4) {
document.getelementbyid("divcharacters").innerhtml = xhr.responsetext;
}
}
</script>
</head>
<body>
我们的第一个ajax实例
<br></br>
选择一个名著:
<br>
<select onchange="updatecharacters();" id="selshow">
<option value=""></option>
<option value="xyj">西游记</option>
<option value="hlm">红楼梦</option>
<option value="shz">水浒传</option>
<option value="sgyy">三国演义</option>
</select>
<br></br>
返回,名著中主要任务:
<br>
<div id="divcharacters">
<select>
</select>
</div>
</body>
</html>
xyj.html
<select>
<option>唐僧</option>
<option>孙悟空</option>
<option>猪八戒</option>
<option>唐僧</option>
<option>观音姐姐</option>
<option>西天如来</option>
</select>
hlm.html
<select>
<option>贾宝玉</option>
<option>林黛玉</option>
<option>薛宝钗</option>
</select>
shz.html
<select>
<option>林冲</option>
<option>李逵</option>
<option>宋江</option>
<option>时迁</option>
</select>
sgyy.html
<select>
<option>刘备</option>
<option>关羽</option>
<option>张飞</option>
<option>曹操</option>
<option>小乔</option>
<option>诸葛亮</option>
</select>
把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 {
// ie
xhr = new activexobject("microsoft.xmlhttp");
}
xhr.onreadystatechange = callbackhandler;
url = selectshow + ".html";
xhr.open("post", url, true);
xhr.send(null);
}
// this is the function that will repeatedly be called by our
// xmlhttprequest object during the life cycle of request
function callbackhandler() {
if (xhr.readystate == 4) {
document.getelementbyid("divcharacters").innerhtml = xhr.responsetext;
}
}
</script>
</head>
<body>
我们的第一个ajax实例
<br></br>
选择一个名著:
<br>
<select onchange="updatecharacters();" id="selshow">
<option value=""></option>
<option value="xyj">西游记</option>
<option value="hlm">红楼梦</option>
<option value="shz">水浒传</option>
<option value="sgyy">三国演义</option>
</select>
<br></br>
返回,名著中主要任务:
<br>
<div id="divcharacters">
<select>
</select>
</div>
</body>
</html>
xyj.html
复制代码 代码如下:
<select>
<option>唐僧</option>
<option>孙悟空</option>
<option>猪八戒</option>
<option>唐僧</option>
<option>观音姐姐</option>
<option>西天如来</option>
</select>
hlm.html
复制代码 代码如下:
<select>
<option>贾宝玉</option>
<option>林黛玉</option>
<option>薛宝钗</option>
</select>
shz.html
复制代码 代码如下:
<select>
<option>林冲</option>
<option>李逵</option>
<option>宋江</option>
<option>时迁</option>
</select>
sgyy.html
复制代码 代码如下:
<select>
<option>刘备</option>
<option>关羽</option>
<option>张飞</option>
<option>曹操</option>
<option>小乔</option>
<option>诸葛亮</option>
</select>