x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
var c = 0;
8
var t;
9
var timer_is_on = 0;
10
11
function timedCount() {
12
document.getElementById('txt').value = c;
13
c = c + 1;
14
t = setTimeout(function() {
15
timedCount()
16
}, 1000);
17
}
18
19
function doTimer() {
20
if (!timer_is_on) {
21
timer_is_on = 1;
22
timedCount();
23
}
24
}