| 12345678910111213141516171819 |
- <!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>
- // 带有输入框的弹框 通过输入框获取到值是字符型
- // 可以通过 输入框中 字符型数字*1 转换成数值型
- var a = window.prompt("请输入一个数字");
- console.log(a * 1 + 1);
- // 带有指令的弹框
- // var b = window.confirm("是否继续");
- // console.log(b);
- </script>
- </body>
- </html>
|