首页 > 代码库 > ajax读取txt文件
ajax读取txt文件
注意url为网络路径
<html>
<head>
<script type="text/javascript">
function loadXMLDoc(){
var xmlhttp;
if(window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();
}else{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4 && xmlhttp.status==200){
var tempStr=xmlhttp.responseText;
alert(tempStr);
var people=eval(‘(‘+tempStr+‘)‘);
alert(people.authors[0].lastName);
}
}
xmlhttp.open("GET","http://www.cngef.org.cn/a.txt",false);
xmlhttp.send();
}
</script>
</head>
<body>
<h2>AJAX</h2>
<button type="button" onclick="loadXMLDoc()">请求数据</button><div id="myDiv"></div>
</body>
</html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。