首页 > Web开发 > 详细

jQuery get()和post()方法及比较

时间:2020-04-13 22:59:59      阅读:68      评论:0      收藏:0      [点我收藏+]

jQuery get()和post()方法及比较

1,jQuery $.get() 方法

$.get() 方法通过 HTTP GET 请求从服务器上请求数据。

$("button").click(function(){
$.get("test.php",function(data,status){
alert("数据: www.nanaopearl.com" + data + "\n状态: " + status);
});
});

2,jQuery $.post() 方法

$("button").click(function(){
$.post("est_post.php",
{
name:"菜鸟教程",
url:"http://www.nanaopearl.com"
},
function(data,status){
alert("数据: \n" + data + "\n状态: " + status);
});
});

3,两种之间的区别

在 GET 中,只能发送有限数量的数据,因为数据是在 URL 中发送的。

在 POST 中,可以发送大量的数据,因为数据是在正文主体中发送的。

jQuery get()和post()方法及比较

原文:https://www.cnblogs.com/96net/p/12694720.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!