jquery.ajax post/get/delete/put 请求方法封装

/** * 获取数据ajax-get请求 * @author laixm */ $.sanjiGetJSON = function (url, data, callback) { $.ajax({ url: url, type: "get...