setTimeout,setInterval 最短触发时间

<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script>
var fired = 0;
var start = new Date();
var timer = setInterval(function(){
if(new Date() - start > 1000){
clearInterval(timer);
console.log(fired);
}
fired ++;
},0);
// console.log 大概是250 , 1000 / 250 = 4ms 就是说大概4ms 触发一次timmer
</script>
</body>
</html>
上一篇:批量插入数据, 将DataTable里的数据批量写入数据库的方法


下一篇:如何:通过对字符串应用 HTML 编码在 Web 应用程序中防止脚本侵入