标签:style java color strong os for
将提交的参数写到open方法的 url 参数中,send方法的参数为null
var url = "test.php?id=XXX";
xml.open("GET", url, true);
xml.send(null);
在send方法里传递参数时,必须设定Content-Type头信息
xml.open("POST", "test.php", true);
xml.setRequestHeader("Content-Type", "application/x-www-form-urlencode;charset=UTF-8");
xml.send("id=" + id + "&name=" + name);
javascript ajax send 的函数应用,布布扣,bubuko.com
标签:style java color strong os for
原文地址:http://www.cnblogs.com/appll/p/3839851.html