diff --git "a/33\347\275\227\346\255\244\344\270\234/2022.11.17/.keep" "b/33\347\275\227\346\255\244\344\270\234/2022.11.17/.keep"
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git "a/33\347\275\227\346\255\244\344\270\234/2022.11.17/2022_11_17 \347\217\255\347\272\247\351\200\211\345\220\215.html" "b/33\347\275\227\346\255\244\344\270\234/2022.11.17/2022_11_17 \347\217\255\347\272\247\351\200\211\345\220\215.html"
new file mode 100644
index 0000000000000000000000000000000000000000..6151de246bec1432bf0965e44ec97397f34cac8a
--- /dev/null
+++ "b/33\347\275\227\346\255\244\344\270\234/2022.11.17/2022_11_17 \347\217\255\347\272\247\351\200\211\345\220\215.html"
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+ 浏览器对象模型(Browser Object Model)
+
+
+
+
+
+
+
+
+
+
+
+
+ | 李韦峰 |
+ 卢国建 |
+ 郑玮喆 |
+ 庄云 |
+ 廖治先 |
+ 郑文源 |
+ 戴俊锋 |
+ 陈昊童 |
+
+
+ | 谢金金 |
+ 占志新 |
+ 张淑芳 |
+ 刘永潘 |
+ 廖柏成 |
+ 郑宗帅 |
+ 吴欣燕 |
+ 陈梅香 |
+
+
+ | 陈立智 |
+ 袁贵森 |
+ 赵浩敏 |
+ 林世涛 |
+ 罗启恒 |
+ 黄柱菘 |
+ 陈鹏 |
+ 张耀仁 |
+
+
+ | 陈华伟 |
+ 张正豪 |
+ 韦仲晓 |
+ 黄富贵 |
+ 陆建锋 |
+ 曾德森 |
+ 吴文龙 |
+ 陆利群 |
+
+
+ | 黄雄 |
+ 王世财 |
+ 张先杰 |
+ 胡基耀 |
+ 马鑫涛 |
+ 李涛 |
+ 杨凌翔 |
+ 罗此东 |
+ 唐皓颖 |
+ 白婉婷 |
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/33\347\275\227\346\255\244\344\270\234/2022.11.17/2022_11_17_BOM\345\233\276\347\211\207\350\275\256\346\222\255.html" "b/33\347\275\227\346\255\244\344\270\234/2022.11.17/2022_11_17_BOM\345\233\276\347\211\207\350\275\256\346\222\255.html"
new file mode 100644
index 0000000000000000000000000000000000000000..633923f2e5ba93616f29a36496a98cf0533bb32c
--- /dev/null
+++ "b/33\347\275\227\346\255\244\344\270\234/2022.11.17/2022_11_17_BOM\345\233\276\347\211\207\350\275\256\346\222\255.html"
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+

+
+
+
+
+
\ No newline at end of file
diff --git "a/33\347\275\227\346\255\244\344\270\234/2022.11.17/\346\265\217\350\247\210\345\231\250\345\257\271\350\261\241.md" "b/33\347\275\227\346\255\244\344\270\234/2022.11.17/\346\265\217\350\247\210\345\231\250\345\257\271\350\261\241.md"
new file mode 100644
index 0000000000000000000000000000000000000000..58915e588cbb4f9d5cda6e35427ff25a08a73330
--- /dev/null
+++ "b/33\347\275\227\346\255\244\344\270\234/2022.11.17/\346\265\217\350\247\210\345\231\250\345\257\271\350\261\241.md"
@@ -0,0 +1,26 @@
+# 浏览器对象
+
+浏览器对象模型(BOM)是以 window 对象为基础的,这个对象代表了浏览器窗口和页面可见的区域。
+
+主要包括window、history、location和document等对象,其中window对象是整个BOM的顶层对象。
+
+###### onclick(点击)
+
+在元素被点击时触发
+
+```
+
+```
+
+###### 定时器:setTimeout():在设定的毫秒数后调用
+
+```
+function out() {
+
+ //抽奖开始,将span中的文本设置成:正在抽奖中...
+ document.getElementById('sp').innerText = '正在抽奖中...'
+ //设定定时器,3秒后出结果
+ setInterval(fn, 3000);
+ }
+```
+