02.debug.html 463 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <script>
  9. alert(d);
  10. var a = 10;
  11. var b = "hello";
  12. c = true;
  13. function fun(){
  14. alert('hello world');
  15. }
  16. var d = 35;
  17. </script>
  18. </head>
  19. <body>
  20. </body>
  21. </html>