这个不是每秒执行一次代码吗,好像进入死循环了,浏览器里数字跳的超快。
<script>
num=1;
function f1(){
num++;
setInterval(f1,1000);
console.log(num);
}
f1();
</script>
橋本奈奈未
相关分类