码迷,mamicode.com
首页 > Web开发 > 详细

ajax 第一个程序

时间:2015-02-20 00:07:29      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script>
window.onload = function ()
{
    var obtn = document.getElementById(‘btn‘);
    
    obtn.onclick = function ()
    {
        var xhr = new XMLHttpRequest();
        xhr.open(‘GET‘,‘1.txt‘,true);
        xhr.send();
        xhr.onreadystatechange = function ()
        {
            if(xhr.readyState = 4)
            {
                alert(xhr.responseText);
            }
        }
    }
}
</script>
</head>

<body>
<input type="button" id="btn" value="提交">
</body>
</html>

 

ajax 第一个程序

标签:

原文地址:http://www.cnblogs.com/mayufo/p/4296359.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!