JavaScript【BOM】

news/2025/1/16 3:56:40/

【BOM】

原创内容,转载请注明出处!

一、BOM是什么

BOM(Browser Object Model,浏览器对象模型)是 JS 与 浏览器窗口交互的接口。

一些与浏览器改变尺寸、滚动条滚动相关的特效,都要借助 BOM 技术。

二、window对象

window 对象是当前 JS 脚本运行所处的窗口,而这个窗口中包含 DOM 结构,window.document 属性就是 document 对象。

在有标签功能的浏览器中,每个标签都拥有自己的 window 对象;也就是说,同一个窗口的标签页之间不会共享一个 window 对象。

三、全局变量是window的属性

全局变量会成为 window 对象的属性。

var a = 10;
console.log(window.a == a);	// true

这就意味着,多个 js 文件之间是共享全局作用域的,即:js 文件没有作用域隔离功能。

四、内置函数普遍是window的方法

setInterval()alert() 等内置函数,普遍是 window 的方法。

console.log(window.alert == alert);	// true
console.log(window.setInterval == setInterval);	// true

五、窗口尺寸相关属性

属性意义
innerHeight浏览器窗口的内容区域的高度,包含水平滚动条(如果有的话)
innerWidth浏览器窗口的内容区域的宽度,包含垂直滚动条(如果有的话)
outerHeight浏览器窗口的外部高度
outerWidth浏览器窗口的外部宽度

获得不包含滚动条的窗口宽度,要用:

document.documentElement.clientWidth

浏览器的外宽指的是浏览器窗口边框的宽度。

当浏览器窗口全屏时:浏览器的外宽 == 浏览器内宽(包含滚动条)

当浏览器窗口不全屏时:浏览器的外宽 > 浏览器内宽(包含滚动条)

六、resize事件

在窗口大小改变之后,就会触发 resize 事件,可以使用 window.onresize 或者 window.addEventListener('resize') 来绑定事件处理函数。

七、已卷动高度

window.scrollY 属性表示在垂直方向已滚动的像素值。

document.documentElement.scrollTop 属性也表示窗口卷动高度。

// 可以利用此种方式获得窗口卷动的高度
var scrollTop = window.scrollY || document.documentElement.scrollTop;
  • document.documentElement.scrollTop 是可以手动给定值的,以达到跳动到任何指定滚动高度处
  • window.scrollY 是只读的,不可以手动给值

八、scroll事件

在窗口被卷动之后,就会触发 scroll 事件,可以使用:

window.onscroll 或者 window.addEventListener('scroll') 来绑定事件处理函数。

九、Navigator对象

window.navigator 属性可以检索 navigator 对象,它内部含有用户此次活动的浏览器的相关属性和标识。

属性意义
appName浏览器官方名称
appVersion浏览器版本
userAgent浏览器用户代理(含有内核信息和封装壳信息)
platform用户操作系统

【案例】

<!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>console.log('浏览器品牌', navigator.appName);console.log('浏览器版本', navigator.appVersion);console.log('用户代理', navigator.userAgent);console.log('操作系统', navigator.platform);</script>
</body>
</html>

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-NILJ8OlF-1691648279602)(mark-img/ee10e3c3552940359198256a6304d806.png)]

十、识别用户浏览器品牌

识别用户浏览器品牌通常使用 navigator.userAgent 属性。

var sUsrAg = navigator.userAgent;if (sUsrAg.indexOf("Firefox") > -1) {
} else if (sUsrAg.indexOf("Opera") > -1) {
} else if (sUsrAg.indexOf("Edge") > -1) {
} else if (sUsrAg.indexOf("Chrome") > -1) {
} else if (sUsrAg.indexOf("Safari") > -1) {
} else {
}

十一、History对象

window.history 对象提供了操作浏览器会话历史的接口。

常用操作就是模拟浏览器回退按钮。

history.back();	// 等同于点击浏览器的回退按钮
history.go(-1);	// 等同于 history.back();

【案例】

  • temp.html
<!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><h1>我是temp网页</h1><a href="history方法.html">去看history方法页面</a>
</body></html>
  • history.html
<!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><h1>我是history方法网页</h1><button id="btn">回退</button><!--  链接可以使用内嵌 javascript 脚本的方式 --><a href="javascript:history.back();">链接:回退</a><script>var btn = document.getElementById('btn');btn.onclick = function () {// history.back();history.go(-1);};</script>
</body></html>

十二、Location对象

window.location 标识当前所在网址,可以通过给这个属性赋值命令浏览器进行页面跳转。

window.locaiton = 'http://www.imooc.com';
window.location.href = 'http://www.imooc.com';

十三、重新加载当前页面

可以调用 location 的 reload 方法以重新加载当前页面,参数 true 表示强制从服务器强制加载。

window.location.reload(true);

【案例】

<!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><button id="btn1">点我去看慕课</button><button id="btn2">刷新</button><script>var btn1 = document.getElementById('btn1');var btn2 = document.getElementById('btn2');btn1.onclick = function () {window.location = 'http://www.imooc.com';};btn2.onclick = function () {window.location.reload(true);};</script>
</body></html>

十四、GET请求查询参数

window.location.search 属性即为当前浏览器的 GET 请求查询参数。

比如网址:https://www.imooc.com/?a=1&b=2

console.log(window.location.search);	// "?a=1&b=2"

关于 GET 及 POST 的详细内容在 Ajax 中介绍。

十五、BOM特效开发

15.1 返回顶部按钮制作

返回顶部的原理:改变 document.documentElement.scrollTop 属性,通过定时器逐步改变此值,则将用动画形式返回顶部。

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>body {height: 5000px;background-image: linear-gradient(to bottom, rgb(255, 0, 149), rgb(7, 185, 255), rgb(0, 255, 76));}.backtotop {width: 60px;height: 60px;background-color: rgba(255, 255, 255, .6);position: fixed;bottom: 100px;right: 100px;/* 小手状 */cursor: pointer;}</style>
</head><body><div class="backtotop" id="backtotopBtn">返回顶部</div><script>var backtotopBtn = document.getElementById('backtotopBtn');var timer;backtotopBtn.onclick = function () {// 设表先关clearInterval(timer);// 设置定时器timer = setInterval(function () {// 不断让scrollTop减少document.documentElement.scrollTop -= 200;// 定时器肯定要停if (document.documentElement.scrollTop <= 0) {clearInterval(timer);}}, 20);};</script>
</body></html>

15.2 楼层导航小效果

DOM 元素都有 offsetTop 属性,表示此元素到定位祖先元素的垂直距离。

定位祖先元素:在祖先中,离自己最近的且拥有定位属性的元素。

即:offsetTop 属性可以得到该元素与离自己最近且拥有定位的祖先元素顶部的距离值。

假如,没有祖先有定位,那么直接得到该元素距离页面顶部的距离值。

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>* {margin: 0;padding: 0;}.content-part {width: 1000px;margin: 0px auto;margin-bottom: 30px;background-color: #ccc;font-size: 50px;}.floornav {position: fixed;right: 40px;top: 50%;margin-top: -100px;width: 120px;height: 200px;background-color: orange;}.floornav ul {list-style: none;}.floornav ul li {width: 120px;height: 40px;line-height: 40px;text-align: center;font-size: 26px;/* 小手指针 */cursor: pointer;}.floornav ul li.current {background: purple;color: white;}</style>
</head><body><nav class="floornav"><ul id="list"><li data-n="科技" class="current">科技</li><li data-n="体育">体育</li><li data-n="新闻">新闻</li><li data-n="娱乐">娱乐</li><li data-n="视频">视频</li></ul></nav><section class="content-part" style="height:674px;" data-n="科技">科技栏目</section><section class="content-part" style="height:567px;" data-n="体育">体育栏目</section><section class="content-part" style="height:739px;" data-n="新闻">新闻栏目</section><section class="content-part" style="height:574px;" data-n="娱乐">娱乐栏目</section><section class="content-part" style="height:1294px;" data-n="视频">视频栏目</section><script>// 使用事件委托给li添加监听var list = document.getElementById('list');var contentParts = document.querySelectorAll('.content-part');var lis = document.querySelectorAll('#list li');list.onclick = function (e) {if (e.target.tagName.toLowerCase() == 'li') {// getAttribute表示得到标签身上的某个属性值var n = e.target.getAttribute('data-n');// 可以用属性选择器(就是方括号选择器)来寻找带有相同data-n的content-partvar contentPart = document.querySelector('.content-part[data-n=' + n + ']');// 让页面的卷动自动成为这个盒子的offsetTop值document.documentElement.scrollTop = contentPart.offsetTop;}}// 在页面加载好之后,将所有的content-part盒子的offsetTop值推入数组var offsetTopArr = [];// 遍历所有的contentPart,将它们的净位置推入数组for (var i = 0; i < contentParts.length; i++) {offsetTopArr.push(contentParts[i].offsetTop);}// 为了最后一项可以方便比较,我们可以推入一个无穷大offsetTopArr.push(Infinity);console.log(offsetTopArr);// 当前所在楼层var nowfloor = -1;// 窗口的卷动window.onscroll = function () {// 得到当前的窗口卷动值var scrollTop = document.documentElement.scrollTop;// 遍历offsetTopArr数组,看看当前的scrollTop值在哪两个楼层之间for (var i = 0; i < offsetTopArr.length; i++) {if (scrollTop >= offsetTopArr[i] && scrollTop < offsetTopArr[i + 1]) {break;}}// 退出循环的时候,i是几,就表示当前楼层是几// 如果当前所在楼层,不是i,表示环楼了if (nowfloor != i) {console.log(i);// 让全局变量改变为这个楼层号nowfloor = i;// 设置下标为i的项有curfor (var j = 0; j < lis.length; j++) {if (j == i) {lis[j].className = 'current';} else {lis[j].className = '';}}}};</script>
</body></html>


http://www.ppmy.cn/news/1029312.html

相关文章

Redis进阶(3)——在Linux上基于Docker容器Redis搭建一主二从三哨兵 SpringBoot整合Redis哨兵

目录 引出redis主从搭建&#xff1a;一主2从6389Master准备文件redis.confredis.log日志文件运行容器查看日志方式tail 6390Slave6391Slave 创建3哨兵创建文件夹sentinel创建运行哨兵容器问题&#xff1a;脑裂问题 SpringBoot整合Redis哨兵启动1主2从&#xff0c;3哨兵pom.xml文…

【JS自用模板】自动点击选课的操作模板

以激动点击课程为案例复习一下基本前端&#xff0c;容易涉及的问题包括如何提取object类的数字&#xff0c;setTimeout为什么不起作用&#xff1f; 具体思路是&#xff0c;此处会立刻选中符合条件的页面元素打开&#xff0c;然后1小时后会刷新页面&#xff0c;相应地播放页面也…

java:注解

一、注解 1.1&#xff1a;注释&#xff1a;很容易知道就是让自己看&#xff0c;或者别人方便阅读你的代码 1.2&#xff1a;注解的作用: 1) 不是程序本身&#xff0c;可以对程序作出解释。&#xff08;这一点跟注释没什么区别&#xff09; 2) 可以被其他程序(比如:编译器等)…

字符串编码和解码,encodeURIComponent和decodeURIComponent用法

使用js内置函数进行编码解码 我们使用 JavaScript 中的 encodeURIComponent() 函数将 Unicode 字符串 unicodeString 编码为 UTF-8&#xff0c;并将结果存储在 utf8String 变量中。编码后的字符串将包含一些特殊字符和百分比编码。 然后&#xff0c;我们使用 decodeURICompone…

【Three.js】遮挡剔除

背景 考虑到场景中模型顶点过多会让fps过低&#xff0c;所以想把相机看不到的模型从场景中移除&#xff0c;来提高渲染性能&#xff0c;但是后续测试结果让我恍然大悟。虽然场景中的顶点数降低了很多&#xff0c;但是每次渲染检查遮挡的过程本身就是一个消耗性能的行为&#x…

STM32--TIM定时器(1)

文章目录 TIM简介定时器类型 通用定时器预分频器时序计数器时序定时中断基本结构TIM内部中断工程TIM外部中断工程 TIM简介 STM32的TIM&#xff08;定时器&#xff09;是一种非常常用的外设&#xff0c;用于实现各种定时和计数功能。它是基于时钟信号进行计数&#xff0c;并在计…

Vue中自定义.js变量

1、定义.js文件 order.js文件内容&#xff1a; // 订单是否报账 const EXPENESS_STATUS_NO0; const EXPENESS_STATUS_YES1; // 状态 0-未发货 1-发货 2-确认收获 const STATUS_NO0; const STATUS_SEND1; const STATUS_DELIVERY2; // 如何不加这个&#xff0c;vue中引…

linux中使用anaconda 切换使用/管理python版本

参考链接: 参考一 参考链接:参考二 anaconda的使用命令: 查看python环境 : conda env list 创建新的python环境 :conda create -n rk1126 python2.7 切换Python环境: conda activate rk1126 删除python环境: conda remove -n rk1126 --all&#xff0c;其中-n后接Py…