123456789101112131415161718 |
- <!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>
- <script>
- //window.prompt('显示文字',默认值)
- //第一个参数 是必须的 第二个参数是可选的
- var a = window.prompt("请输入",18)
- var b = a*365*24*60*60
- alert('截止到现在共活了'+b+'秒')
- </script>
- </body>
- </html>
|