Fix 变量名重复

This commit is contained in:
底层用户 2022-05-23 20:59:22 +08:00
parent d063784d73
commit 9c141815f5

View File

@ -98,7 +98,7 @@ $('#hitokoto').click(function () {
times = 1;
var index = setInterval(function () {
times--;
if (time == 0) {
if (times == 0) {
clearInterval(index);
}
}, 1000);