JQuery概述
$.ajax
$.post
$.get
回车提交
radio
语法:
$.post(URL,data,callback);
示例:
load(){ $.post("/api/xxxxApi/getList", { name:"zhangsan", age:12 }, function(data,status){ console.log("Data: " + data + "\nStatus: " + status); }); }