Ajax使用示例
2021-08-16 23:58
标签:erro func 代码 cti art add ajax user status 话不多说,看代码: var formUrl = 项目名 + "sysUser/add", $.ajax({ type: ‘POST‘, async: false, // 默认异步true,false表示同步 url: formUrl, // 请求地址 dataType: ‘json‘, // 服务器返回数据类型 data: { startDate: $("#startDate").val(), endDate: $("#endDate").val() }, success: function(data) { // 请求陈工处理 }, error: function(XMLHttpRequest, textStatus, e) { // 请求失败处理 }); } });Ajax使用示例标签:erro func 代码 cti art add ajax user status 原文地址:https://blog.51cto.com/1197822/2472194