日期:2014-05-16 浏览次数:20841 次
<title>无标题文档</title>
<style type="text/css">
body { background-color:#000;}
</style>
<script type="text/javascript">
//<![CDATA[
function mission() {
var x = new ActiveXObject("Msxml2.XMLHTTP.3.0");
x.open("get","test2.asp?t="+Math.random().toFixed(4),false);
x.send();
var demo = document.getElementById("demo");
var now = demo.innerHTML = x.responseText;
_x = window.setTimeout(mission,1000) //1000=1S
}
onload = mission;
//]]>
</script>
</head>
<body>
<div id="demo" style="color:#0F0; font-size:172px"></div>
</body>
</html>
test2.asp
[code=html]
<title>无标题文档</title>
</head>
<body>
<%
call main()
Function main()
response.write(now())
End Function
%>
</body>
</html>