jquery中的ajax写法
程序员文章站
2022-07-15 14:31:16
...
一、第一种:
$.post("url", {"func": "getNameAndTime"},function(data, status) {
}, "json");
二、第二种
$.ajax({
type: "GET",
url: "",
data: {},
dataType: "json",
success: function (res) {
}
});