ajax.net用TIMER 不斷CALL JS FUNCTION

每隔幾秒就CALL 一次
有冇人識

<html>
<script language="javascript">
var i = 0;
function tip() {
    document.title = i;
    i++;
}

window.onload = function() {
    setInterval(tip, 3000);
}
</script>
</html>

TOP