ajax页面异步刷新
1个回答
展开全部
使用ajax 啊,100%满足你的需求!
下面我提供一个异步请求源代码给你 js中:
function isExist() {
var companyName = $("#company").val();
if(companyName==""){
alert("'所属公司'不能为空!");
$("#company").focus();
return;
}
var num = 0;
$.ajax({
url:"isExistCompany.do?company.companyName="+companyName+"&t="+new Date(),
async: false,
success:function(data) {
num = data;
}
});
if(num==0) {
alert("您输入的公司不存在,请重新输入!");
$("#company").val("")
$("#company").focus();
return false;
}
return true;
}
action中:public void isExistCompany() {
try {
int num = 0;
String companyName = company.getCompanyName();
if (company!=null|| StringUtil.notEmpty(companyName))
num=companyService.getCompanyId(companyName);
HttpServletResponse response = ServletActionContext.getResponse();
response.setContentType("text/plain; charset=GBK");
PrintWriter out = response.getWriter();
out.print(num);
out.flush();
} catch (Exception e) {
e.printStackTrace();
}
}
下面我提供一个异步请求源代码给你 js中:
function isExist() {
var companyName = $("#company").val();
if(companyName==""){
alert("'所属公司'不能为空!");
$("#company").focus();
return;
}
var num = 0;
$.ajax({
url:"isExistCompany.do?company.companyName="+companyName+"&t="+new Date(),
async: false,
success:function(data) {
num = data;
}
});
if(num==0) {
alert("您输入的公司不存在,请重新输入!");
$("#company").val("")
$("#company").focus();
return false;
}
return true;
}
action中:public void isExistCompany() {
try {
int num = 0;
String companyName = company.getCompanyName();
if (company!=null|| StringUtil.notEmpty(companyName))
num=companyService.getCompanyId(companyName);
HttpServletResponse response = ServletActionContext.getResponse();
response.setContentType("text/plain; charset=GBK");
PrintWriter out = response.getWriter();
out.print(num);
out.flush();
} catch (Exception e) {
e.printStackTrace();
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
七鑫易维信息技术
2024-09-02 广告
2024-09-02 广告
Play Video 七鑫易维是致力于机器视觉和人工智能领域的高新科技企业,迄今已专注眼球追踪技术的研发、创新与应用超过14年,拥有完全自主知识产权,全球专利总量655余项。 作为眼球追踪技术领域的全球知名品牌,七鑫易维的产品体系覆盖眼动分...
点击进入详情页
本回答由七鑫易维信息技术提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询