AJAX自学练习二:无刷新从数据库后台取数据显示

请求页面request.jsp

 

Java代码
  1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"  
  2.     pageEncoding="ISO-8859-1"%>  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  4. <html>  
  5. <head>  
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  7. <title>Insert title here</title>  
  8. <mce:script language="javascript"><!--  
  9. function GetXmlHttpObject(){  
  10.     var xmlHttp = null;  
  11.     try{  
  12.         xmlHttp = new XMLHttpRequest();  
  13.     }catch(e){  
  14.         try{  
  15.             xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");  
  16.         }catch(e){  
  17.             xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");  
  18.         }  
  19.     }  
  20.     return xmlHttp;  
  21.       
  22. }  
  23. function showMsg(str){  
  24.     xmlHttp = GetXmlHttpObject();  
  25.     if(xmlHttp == null){  
  26.         alert ("you browser don't support the ajax");  
  27.           return;  
  28.                   
  29.     }  
  30.     var url = "response.jsp";  
  31.     url = url + "?q="+ str;  
  32.     url = url + "&sid ="+ Math.random();  
  33.     xmlHttp.onreadystatechange = stateChanged;  
  34.     xmlHttp.open("GET", url, true);  
  35.     xmlHttp.send(null);  
  36. }  
  37. function stateChanged()  
  38. {  
  39.     if(xmlHttp.readyState==4)  
  40.     {  
  41.         document.getElementById("showHint").innerHTML = xmlHttp.responseText;  
  42.     }  
  43. }  
  44. // --></mce:script>  
  45. </head>  
  46. <body>  
  47. <form name="form1" action="" method="post">  
  48. <p>RocarsId:</p>  
  49.     <select name="select1" οnchange="showMsg(document.form1.select1.options[document.form1.select1.selectedIndex].value)" >  
  50.         <option value="140">140</option>  
  51.         <option value="150">150</option>  
  52.     </select>  
  53.     <div id="showHint">Show rocars ccrn messages.</div>  
  54. </form>  
  55. </body>  
  56. </html>  

 

response.jsp

 

Java代码
  1. <%@ page language="java" contentType="text/plain; charset=UTF-8"  
  2.     pageEncoding="UTF-8"%>  
  3.    <%@ page import="com.lwf.eus.util.*,java.util.*,com.lwf.eus.entity.*,com.lwf.eus.bean.*" %>  
  4. <html>  
  5. <head>  
  6. <title>response the ccrn</title>  
  7. </head>  
  8. <body>  
  9. <%  
  10.     String q = request.getParameter("q");  
  11.     System.out.println("message:" + q);  
  12.     RocarsBean rocars = RocarsEntity.getRocarsListById(q);  
  13. %>  
  14. <table>  
  15. <tr>  
  16. <td>RocarsId</td>  
  17. <td>RocarsCcrn</td></tr>  
  18. <tr>  
  19. <td><%=rocars.getRocarsId() %></td>  
  20. <td><%=rocars.getCcrn() %></td>  
  21. </tr>  
  22. </table>  
  23. </body>  
  24. </html>  

 

注意这里与自学练习一不同的是,request.jsp页面用一个div来显示信息,response.jsp从数据库里面查询出来的内容放在table标签里,其它的html标签不会在div里面显示。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值