惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
博客园_首页
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
MongoDB | Blog
MongoDB | Blog
美团技术团队
H
Help Net Security
G
Google Developers Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
Google DeepMind News
Google DeepMind News
J
Java Code Geeks
M
MIT News - Artificial intelligence
腾讯CDC
IT之家
IT之家
Vercel News
Vercel News
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
I
InfoQ
博客园 - 司徒正美
A
About on SuperTechFans

博客园 - Caesar

t-sql中的随机数 服务器应用程序不可用[解决办法] 配置错误:未能使用提供程序“RsaProtectedConfigurationProvider”进行解密。提供程序返回错误信息为: 打不开 RSA 密钥容器。 让指定的按钮获取文本框的回车键 正则表达式的语法表 JS几种常用的表单判断 .aspx中写的Page_Load不执行 安装VS2005 SP1补丁方法(转) 读取Cookie出现乱码的解决办法. 数据库的备份与恢复 ASP.NET基于角色的窗体安全认证机制 JQuery参考文档 asp.net过滤HTML标签的几个函数 ASP.NET 嵌套Repeater 验证日期的正则表达式 去掉所有HTML标记 将GridView中内容导入到Word asp.net中使用javascript C#文件操作
用Ajax读取Text格式的数据(转)
Caesar · 2008-01-11 · via 博客园 - Caesar

  用Ajax读取Text格式的数据,只需要读取XMLHttpRequest对象返回的responseText属性即可。代码如下:
 1、Client - helloworld.htm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
>
<html>
<head>
<title>Ajax Hello World</title>
<script type="text/javascript">
var xmlHttp;function createXMLHttpRequest(){
    
if(window.ActiveXObject){
        xmlHttp 
= new ActiveXObject("Microsoft.XMLHTTP");
    }
    
else if(window.XMLHttpRequest){
        xmlHttp 
= new XMLHttpRequest();
    }
}
function startRequest(){
    createXMLHttpRequest();
    
try{
        xmlHttp.onreadystatechange 
= handleStateChange;
        xmlHttp.open(
"GET""data.txt"true);
        xmlHttp.send(
null);    
    }
catch(exception){
        alert(
"您要访问的资源不存在!");
    }
}
function handleStateChange(){    
    
if(xmlHttp.readyState == 4){        
        
if (xmlHttp.status == 200 || xmlHttp.status == 0){
            
// 显示返回结果
            alert("responseText's value: " + xmlHttp.responseText);
        }
    }
}
</script>
</head>
<body>
    
<div>
        
<input type="button" value="return ajax responseText's value"
                onclick
="startRequest();" />
    
</div>
</body>
</html>

hello world!

附源码:responseText.rar
原文地址: http://legendry.cnblogs.com/articles/411362.html

发表于 2008-01-11 17:17  Caesar  阅读(336)  评论()    收藏  举报