[第四弹]ajax发出post请求

前端之家收集整理的这篇文章主要介绍了[第四弹]ajax发出post请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<script>
	xmlHttp = new XMLHttpRequest();
	xmlHttp.open('post','xxx.PHP');
	var name = 'zhangSan';
	var age = 20;
	var data = 'name=' + name + '&age=' + age;
	xmlHttp.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
	xmlHttp.onreadystatechange = function (){
		//
	};
<span style="white-space:pre">	</span>xmlHttp.send(data);
</script>
原文链接:https://www.f2er.com/ajax/164309.html

猜你在找的Ajax相关文章