Ajax POST请求

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax POST请求相关的知识,希望对你有一定的参考价值。

  1. var xmlhttp = new XMLHttpRequest();
  2. xmlhttp.open('POST', 'http://whatever.com/myscript.php', true);
  3. xmlhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
  4. xmlhttp.onreadystatechange = function() {
  5. };
  6. xmlhttp.send('param=5');

以上是关于Ajax POST请求的主要内容,如果未能解决你的问题,请参考以下文章

Ajax--发送POST请求 & POST设置请求体 & 设置请求头信息

ajax中get和post请求的区别

$.ajax Post 请求不发送 POST 数据

解析ajax请求post和get的区别

AJAX请求 $.post方法的使用

form表单的post请求和ajax的post的请求都有哪些区别