123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>案例2</title>
- </head>
- <body>
-
- <h1 id="h1" ></h1>
- <script>
-
- let count = 1;
- let index = setInterval(function (){
- if (count == 3){
- clearInterval(index)
-
- location.href = "https://www.baidu.com"
- }
-
- let h1 = document.getElementById("h1");
-
-
- h1.innerText = "<font color='red'>"+(4-count)+"</font>";
-
- count++;
- },1000);
- </script>
- </body>
- </html>
|