继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

原生js---ajax---get方法传数据

红炉一点雪cck
关注TA
已关注
手记 4
粉丝 0
获赞 2
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <button id="btn">点击</button>
    </body>
    <script>
        var btn=document.getElementById("btn");
        btn.=function(){
            //1.创建ajax对象(此处兼容性的创建)
            var xhr=null;
            try{
            xhr=new XMLHttpRequest();
            }catch(e){
            xhr=new ActiveXObject("Microsoft.XMLHTTP");
            }
            
            //2.调用open方法----注:xhr.open("方法","路径?数据","是否异步")
            xhr.open("get","links/2.get.php?username="+encodeURI('陆小曼')+"&age=18&timp="+new Date().getTime(),true);
            
            //3.发送数据
            xhr.send();
            
            //4.请求状态改变事件
            xhr.onreadystatechange=function(){
                if(xhr.readyState==4){
                    if(xhr.status==200){
                    document.write(xhr.responseText)
                    }else{
                    alert("错误"+xhr.status)
                    }
                }
            }
        }
    </script>
</html>


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP