时间:2021-07-01 10:21:17 帮助过:7人阅读
$.ajax({
cache: true,
type: "POST",
url:"__URL__/index",
data:{name:$("#name").val()},
async: false,
datatype: "json",
error: function(request) {
alert("Connection error");
},
success: function(data) {
}
});