注:需先引入 jquery.json-xx.min.js
1. query传参
var name = '王一'; var age = 18; $.ajax({ type : 'get', url : "xxxxxx?name="+name+"&age="+age, async : false,//同步/异步 contentType : "application/x-www-form-urlencoded; charset=gbk", dataType : 'json', //返回 JSON 数据 beforeSend : function() { /