一、验证用户是否存在
$(document).ready(function(){
?$("#groupNameId").blur(function(event){
??
?????? $.ajax({
?????????? type:"POST",
?????????? url:"<%=request.getContextPath() %>/cefServerGroupAction.do",
?????????? dataType:"html",
?????????? data:"groupName="+$(".groupNameId").val(),
?????????? cache:false,
?????????? async:true,
?????????? beforeSend:function(XMLHttpRequest)
?????????????? {
?????????????????? $("#showResult").text("正在查询");
?????????????????? //Pause(this,100000);
?????????????? },
?????????? success:function(msg)
?????????????? {??
?????????????????? $("#showResult").html(msg);
?????????????????? $("#showResult").css("color","red");
?????????????? },
????????? complete:function(XMLHttpRequest,textStatus)
?????????????? {
?????????????????? //隐藏正在查询图片
?????????????? },
???????? error:function()
????????????? {
?????????????????? //错误处理
?????????????????? var msg = "组名已经存在,请更换一个名字!";
??????????? ?? $("#showResult").html(msg);
????????????????? $("#showResult").css("color","red");
????????????????? $("#groupNameId").focus();
????????????????? event.preventDefault();
????????????? }
?????????? });
??????
???? });
?? });
?
?
?mvn -Dmaven.test.skip=true clean package
?
?
二、
?