81,115
社区成员
发帖
与我相关
我的任务
分享






$.ajax({
type: "GET",//或post
url: "your url",
data: {"your data"},
dataType: "json",
success: function(data){
alert(data.str);
}
)};