Files
ClassContent/历届学生/fontendsix/项目练习/上课项目/聊天/fontend/index.html
2024-09-27 02:06:13 +08:00

24 lines
476 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
<script>
for (var i = 0; i < 5; i++) {
(function (i) {
setTimeout(function () {
console.log(i);
}, 1000 * i);
})(i); //这里使用闭包
}
</script>
</html>