您的位置:首页 > Web前端 > JavaScript

原生javascript Ajax异步请求代码小例子

2017-07-13 18:02 639 查看




<html>
<head>
<meta charset="utf-8">
<title>demo</title>
<style>
.btn{height:30px;width:100px;background:red;margin:10px 0;text-align:center;line-height:30px;color:#fff;}
</style>
</head>
<body>
<div class="postbtn btn">POST请求</div>
<div class="getbtn btn">GET请求</div>
</body>

<script type="text/javascript">

//post请求
document.querySelector(".postbtn").onclick= function(){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
xmlhttp.responText;
}

}
xmlhttp.open("POST", "http://localhost/t.php", true);
xmlhttp.send("aagfdga");
};

//get请求
document.querySelector(".getbtn").onclick= function(){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
console.log(xmlhttp.responseText);
}
}
xmlhttp.open("GET", "json.json", true);
xmlhttp.send(null);
};

</script>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: