AJAX验证数据库内容并将值显示在页面

时间:2021-05-28

功能实现:

在jsp页面中填写文本框内容,光标离开文本框,在本页面的相应地方获取数据库中改值所对应的其他数据。

servlet:

request.setCharacterEncoding("utf-8");PrintWriter out = response.getWriter();// 调用servlet层去数据库查找是否有相同用户名 并返回到页面中的其他记录String client_id = request.getParameter("client_id");ClientServices clientServices = new ClientServices();try {Thread.sleep(2000);} catch (InterruptedException e) {e.printStackTrace();}Client client = clientServices.findClientById(client_id);if (client != null) {out.print(URLEncoder.encode(client.getClient_name(), "utf-8"));} else {out.print("false");}out.flush();out.close();

jquery:

$(document).ready(function() {$("#client_id").blur(function() {$.ajax({type : 'POST',url : 'servlet/validServlet?client_id=' + $(this).val(),data : 'client_id=' + $("#client_id").val(),success : function(msg) {if (msg == 'false') {alert("没有此人");} else {//utf-8解码解决中文乱码$("#clientInfo").html(decodeURI(msg));$("#clientInfo").attr("value", decodeURI(msg));}}});});});

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章