我是靠谱客的博主 眼睛大小海豚,最近开发中收集的这篇文章主要介绍XMLHttpRequest对象使用“POST”方法,需要设置“setRequestHeader”,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
var getjson = function(){
var xhr = new XMLHttpRequest();
xhr.open("POST","ajax.php",true);
//post方法需要设置header头"setRequestHeader"
xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xhr.send("id=2046");
xhr.onreadystatechange = function(){
if(xhr.readyState==4&&xhr.status==200){
var obj = JSON.parse(xhr.responseText);
document.querySelector("main").innerHTML = obj.classify;
};
};
};
转载于:https://my.oschina.net/u/1041665/blog/978874
最后
以上就是眼睛大小海豚为你收集整理的XMLHttpRequest对象使用“POST”方法,需要设置“setRequestHeader”的全部内容,希望文章能够帮你解决XMLHttpRequest对象使用“POST”方法,需要设置“setRequestHeader”所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复