JvaScript AJAX
AJAX(异步JavaScript)是一种用于创建快速动态网页的技术。
利用AJAX发起请求,需要调用XMLHttpRequest对象中的open和send方法
GET请求
<script>
var xmlhttp=new XMLHttpRequest(); //从XMLHttpRequest对象实例化对象xmlhttp
xmlhttp.open('GET','http://192.168.172.1:9090/get.txt',true); //通过调用xmThttp对象的open方法发起get请求
xmlhttp.send();//将请求发出去
</script>
POST请求
<script>
var xmlhttp=new XMLHttpRequest();
xmlhttp.open('POST','http://192.168.172.1:9090/post.php',true);
xmlhttp.setRequestHeader("Content-type","application/x-www-formurlencoded");
xmlhttp.send('name=icqsafe666'); //POST传参需要在send方法中传入参数和值
</script>