81,122
社区成员




$.ajax({
type: "POST",
url: "你的请求路径",
data: {你这儿写你要传的参数键值对形式},
success: function(data) {
请求成功后执行回调
}
});