1-ajax概念和基本形式
阿新 • • 發佈:2017-05-14
ron world! scrip change req asc 操作 fun and
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>1-ajax</title>
<script>
/*
ajax : Asynchronous JavaScript and XML 異步JavaScript和XML
用javascript異步形式去操作xml
數據交互
*/
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" value="按鈕" id="btn"/>
</body>
</html>
------------------------------------------------------------
1.txt
Hello world!
1-ajax概念和基本形式