12345678910111213141516171819202122232425262728 |
- <!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 str = prompt("请输入用户名");
- // console.log("欢迎"+str);
- // 确认
- var str2 = confirm("是否继续!");
- console.log(str2);
- if(str2){
- console.log("你点击了确定");
- }else{
- console.log("你点击了取消")
- }
- </script>
- </body>
- </html>
|