<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>
<script>
setTimeout(function () {
console.log('时间到了')
}, 2000)
// setTimeout(function () {
// 输入函数体内的执行函数
// console.log('时间到了')
// }, 时间值 为毫秒 例如1000)
</script>
</body>
</html>