主页面(要求刷新的页面)要求每一分钟刷新一次系统时间
<html>
<body onload="makeRequest("getSystemTime.jsp")"> //创建httpRequest对象
<form name="dateForm">
<table>
<td colspan="2" align="center">
<div id="sysTimeShow"></div> //显示平台系统时间
</td>
</table></form>
</body>
</html>
getSyste...