我想知道我需要在哪里使用async: false, or async: true
Jquery Ajax 方法
我有一个带有字段的表单,当我单击按钮时,我正在调用 jquery ajax 方法以将值从该字段保存到服务器
$.ajax({
url: "../Member/Home.aspx/SaveClient",
type: "POST",
async: false,
dataType: 'json',
contentType: 'application/json; charset=utf-8',
data: "{'projectSoid': '" + $("#hdnValueProjectSoid").val()
+ "', 'name': '" + Name
+ "', 'industry ': '" + Industry
+ "', 'descriptions ': '" + Descriptions
+ "', 'employment ': '" + Employment
+ "', 'email ': '" + Email
+ "', 'phone ': '" + Phone + "'}",
success: function (response) {
if (response.d != null) {
},