1234567891011121314151617181920212223242526272829303132333435 |
- <!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>
- <div id="box">hello</div>
- <script>
- // BOM 浏览器对象模型 Browser Object Model 在js中用window来表示
- // BOM 所代表就是浏览器 浏览器也为js 预留了一些方法用来操作浏览器
- // BOM 要大于 DOM 因为BOM是浏览器的方法 而DOM是浏览器的页面
- //
- // var box = window.document.getElementById("box");
- // console.log(box);
- // window这个对象在代码过程中是可以省略的
- // 弹框
- // alert("hello world");
- // window.alert("hello world")
- // 确认框
- // confirm("你确定要删除吗?");
- // 提示框
- // prompt("请输入你的姓名");
-
-
- </script>
- </body>
- </html>
|