123456789101112131415161718 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- alert("hello world");
- var userName = window.prompt("请输入您的名字");
- console.log(userName);
- var boo = window.confirm("您确定要退出吗?");
- console.log(boo);
-
- </script>
- </body>
- </html>
|