81,115
社区成员
发帖
与我相关
我的任务
分享
$.ajax({
type: "POST",
url: "你的请求路径",
data: {你这儿写你要传的参数键值对形式},
success: function(data) {
请求成功后执行回调
}
});