我们在网页制作的过程中经常会遇到及时刷新数据的问题,如果使用 的方法,会造成整个屏幕不断闪烁刷新的效果,这会降低用户的操作满意度。
所以我们需要一种可以实现无闪自动刷新数据的方法来解决以上问题。
实例解决问题:
希望实现用户在进入系统以后(整个session的时效之内),如果收到新邮件则发出声音提示。
实现思路:
1.首页部分:< body onload="init('<%=ses_userBean.getUsername()%>');"> // load时调用init(user);
2.js部分:用XMLHTTP实现页面局部刷新,调用check_mail.jsp对后台数据库进行检索判断并返回结果。
1 <!--
2
3 var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
4
5 var checkresult=null;
6
7 var username =null;
8
9 function init(user){
10
11 username=user;
12
13 window.setInterval('Checkmail()',5000);//每隔5秒自动调用Checkmail()
14
15 }
16
17 function Checkmail()
18
19 {
20
21 xmlhttp.open("POST", "check_mail.jsp?uName="+username, false);
22
23 xmlhttp.onreadystatechange = updatePage;
24
25 xmlhttp.send();
26
27 }
28
29 function updatePage() {
30
31 if (xmlhttp.readyState < 4) {
32
33 test1.innerHTML="loading";
34
35 }
36
37 if (xmlhttp.readyState == 4) {
38
39 var response = xmlhttp.responseText;
40
41 if(response==1){//判断为假
42
43 test1.innerHTML=" ";
44
45 checkresult=1;
46
47 }
48
49 else{//判断为真
50
51 test1.innerHTML="<ccid_file alt=新邮件 values="img/tp024"
52
53 alt=新邮件 src=img/tp024.gif />
54
55 <EMBED src='music/nudge.wma' hidden=true autostart=true loop=false>";
56
57 checkresult=0;
58
59 }
60
61 }
62
63 }
64
65 // -->
2
3 var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
4
5 var checkresult=null;
6
7 var username =null;
8
9 function init(user){
10
11 username=user;
12
13 window.setInterval('Checkmail()',5000);//每隔5秒自动调用Checkmail()
14
15 }
16
17 function Checkmail()
18
19 {
20
21 xmlhttp.open("POST", "check_mail.jsp?uName="+username, false);
22
23 xmlhttp.onreadystatechange = updatePage;
24
25 xmlhttp.send();
26
27 }
28
29 function updatePage() {
30
31 if (xmlhttp.readyState < 4) {
32
33 test1.innerHTML="loading";
34
35 }
36
37 if (xmlhttp.readyState == 4) {
38
39 var response = xmlhttp.responseText;
40
41 if(response==1){//判断为假
42
43 test1.innerHTML=" ";
44
45 checkresult=1;
46
47 }
48
49 else{//判断为真
50
51 test1.innerHTML="<ccid_file alt=新邮件 values="img/tp024"
52
53 alt=新邮件 src=img/tp024.gif />
54
55 <EMBED src='music/nudge.wma' hidden=true autostart=true loop=false>";
56
57 checkresult=0;
58
59 }
60
61 }
62
63 }
64
65 // -->
1
2 <%@ page contentType="text/html; charset=GBK" %>
3
4 <%@ page errorPage="error/login_error.jsp"%>
5
6 <%@ page import="myweb.*" %>
7
8 <%@ page import="java.sql.*" %>
9
10 <%
11
12 String user=request.getParameter("uName");
13
14 Connection conn=null;
15
16 try{
17
18 conn=DBConnection.getConnection();
19
20 PreparedStatement pStat=conn.divpareStatement("
21
22 select * from message where r_name='"+user+"' and status=0");
23
24 ResultSet rs=pStat.executeQuery();
25
26 if(rs.next()){//有记录
27
28 response.getWriter().print(0);
29
30 }else{
31
32 response.getWriter().print(1);
33
34 }
35
36 }finally{
37
38 if(conn!=null) conn.close();
39
40 }
41
42 %>
2 <%@ page contentType="text/html; charset=GBK" %>
3
4 <%@ page errorPage="error/login_error.jsp"%>
5
6 <%@ page import="myweb.*" %>
7
8 <%@ page import="java.sql.*" %>
9
10 <%
11
12 String user=request.getParameter("uName");
13
14 Connection conn=null;
15
16 try{
17
18 conn=DBConnection.getConnection();
19
20 PreparedStatement pStat=conn.divpareStatement("
21
22 select * from message where r_name='"+user+"' and status=0");
23
24 ResultSet rs=pStat.executeQuery();
25
26 if(rs.next()){//有记录
27
28 response.getWriter().print(0);
29
30 }else{
31
32 response.getWriter().print(1);
33
34 }
35
36 }finally{
37
38 if(conn!=null) conn.close();
39
40 }
41
42 %>
4.首页结果显示
将< span id="test1" > < /span >插入指定位置。