在做一個(gè)項(xiàng)目時(shí),客戶要求網(wǎng)頁上具有聲音提醒功能。就是讓網(wǎng)頁每2分鐘去檢查一下是不是有新任務(wù),若有就聲音提醒。我采用了AJAX技術(shù),再加了一段javascript代碼就實(shí)現(xiàn)了客戶的這個(gè)要求。 下面是部分代碼:(注意紅色部分) <!--#include file="Config.asp" --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>數(shù)據(jù)管理平臺</title> <script src="js/jquery.js" type="text/javascript"></script> <script type="text/livescript"> function callRenWu(){ $.get("callRengWuShu.asp?t="+Math.random(),function(data){ if (data>0){ document.getElementById("bsound").src="images/提醒.mid"; $("#newpic").html("你有"+data+"個(gè)新任務(wù)"); }else{ document.getElementById("bsound").src=""; $("#newpic").html(''); } }); window.setTimeout('callRenWu()',120000); } </script> <link rel="stylesheet" type="text/css" href="images/hbwl.css"/> </head> <body onload="callRenWu()"> <div id="header">青海油田社區(qū)管理中心維修數(shù)據(jù)管理平臺</div> <div id="left"> <div class="leftTitle">功能模塊</div> <bgsound id="bsound" loop="infinite" /> <span id='newpic'></span> .... .... ....
|