然而,我有活力的附加功能,如将客户列入客户名单,出现在活动期间。 它增加了新的清单项目,一旦用户点击案文箱,一旦用户输入有效内容,就会在清单中增加新输入的项目,以图示新添加的内容。 在用户点击已定的项目时,删除该清单。
当我们在当地实施这一功能时,我们就能够把客户列入从一个审判中的许多清单。 但是,如果将申请上载并审判,则会节省一个新的客户群体,但当试图从一枪中增加更多人员时,只添加最后一点。 以前增加的客户主要正在申请。 如果客户拥有已经具备的关键,则删除已经添加的客户。 这种做法更像我们的朋友名单,你可以在朋友的网页上找到。
有一种办法可以同步进行“jquery ajax”要求。 谁能提供帮助?
$( .newcustomerlist ).live("keypress",function (event) {
var element_id = $( .custitem ).attr( id );
var customer_key = null;
var url_key = null;
if (element_id != null) {
customer_key = element_id.split( # )[0]
url_key = element_id.split( # )[1]
} else {
url_key = $(this).attr("id");
}
if(event.which == 13 ) {
var cust_list_name = $(this).val().trim();
var val = (/^[a-zA-Z ]*[-a-zA-Z0-9_ ]+$/).test(cust_list_name);
if(val){
$.ajax({
type : "GET",
url : "/addcustomerfromhere/",
data : "cust_list_name=" + cust_list_name,
success : function (msg) {
new_customer_key = msg.customer_key ;
$.ajax({
type : "GET",
url : "/addcustomertolist/",
data : "url_key=" + url_key + "&customer_key =" + new_customer_key ,
success : function (data) {
$("ul.custlist").prepend("<li id="+ new_customer_key + "#"+ url_key + " class= custitem addedtocust ><span>" + msg.cust_list_name + "</span></li>");
$(".title").show();
},
error : function (XMLHttpRequest, textStatus, errorThrown) {
$.notify({message: Apologies. Our servers are busy at this moment. Please try again later. , type: error });
}
});
},
error : function (XMLHttpRequest, textStatus, errorThrown) {
$.notify({message: Apologies. Our servers are busy at this moment. Please try again later. , type: error });
}
});
$(".addnew").show()
$(".newtext").hide()
} else {
}
}
});