在我的代码中点击“开始”后#39;我想看点数。
var h = 0;
var m = 0;
var s = 0;
function stoper() {
s++;
if (s == 60) {
s = 0;
m++;
if (m == 60) {
m = 0;
h++;
}
}
refresh();
}
function refresh() {
czas = h + ":" + m + ":" + s
document.getElementById("czas").innerHTML = czas;
}

<div id="czas">
<button onclick="setInterval(refresh,1000)">Start</button>
</div>
&#13;
答案 0 :(得分:2)
您应该致电stoper
而不是refresh
:
像这样:
<button onclick="setInterval(stoper,1000)">Start</button>