html代码:
- <html>
- <head>
- </head>
- <body>
- <script type="text/javascript">
- function ajaxFunction()
- {
- var xmlHttp;
- try
- {
- // Firefox, Opera 8.0+, Safari
- xmlHttp=new XMLHttpRequest();
- }
- catch (e)
- {
- // Internet Explorer
- try
- {
- xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
- }
- catch (e)
- {
- try
- {
- xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
- }
- catch (e)
- {
- alert("您的浏览器不支持AJAX!");
- return false;
- }
- }
- }
- xmlHttp.onreadystatechange=function()
- {
- if(xmlHttp.readyState==4)
- {
- //alert(xmlHttp.readyState);
- document.myForm.time.value=xmlHttp.responseText;
- }
- }
- xmlHttp.open("GET","time.jsp",true);
- xmlHttp.send(null);
- }
- </script>
- <form name="myForm">
- 用户: <input type="text" name="username" onkeyup="ajaxFunction()"/>
- 时间: <input type="text" name="time" />
- </form>
- </body>
- </html>
time.jsp:
- <%@ page import="java.util.*" %>
- <%@ page import="java.text.*" %>
- <%
- SimpleDateFormat tempDate = new SimpleDateFormat("hh:mm:ss");
- String datetime = tempDate.format(new Date());
- out.println(datetime);
- %>
转载于:https://blog.51cto.com/bitzyun/398134