8_例子.html 517 B

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