|
|
9³â Àü |
<html>
<body>
<script type="text/javascript">
function GetXmlHttpObject()
{
var xmlHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}
function run()
{
xmlHttp = GetXmlHttpObject();
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET","time.php",true);
xmlHttp.send(null);
}
function stateChanged()
{
if (xmlHttp.readyState==4)
{
document.myForm.time.value=xmlHttp.responseText;
}
}
</script>
<form name="myForm">
Name : <input type="text" onkeyup="run();" name="username" />
Time : <input type="text" name="time" />
</form>
</body>
</html> |
|
̵̧ : 412 |
̵̧
¸ñ·Ï
|
|