码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 操作BOM

时间:2021-06-06 19:19:58      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:font   snippet   sel   标准   asc   语言   search   sdn   改变   

目录

 

操作BOM

1、浏览器

2、window

3、navigator

4、screen

5、location

6、document

7、history


操作BOM

1、浏览器

不同的浏览器对JavaScript支持的差异主要是,有些API的接口不一样,比如A JAX,File接口。对于ES6标准,不同的浏览器对各个特性支持也不一样。
在编写JavaScript的时候,就要充分考虑到浏览器的差异,尽量让同一份JavaScript代码能运行在不同的浏览器中。
JavaScript可以获取浏览器提供的很多对象,并进行操作。

2、window

window 对象不但充当全局作用域,而且表示浏览器窗口。
window 对象有innerWidthinnerHeight 属性,可以获取浏览器窗口的内部宽度和高度。
内部宽高是指除去菜单栏、工具栏、边框等占位元素后,用于显示网页的净宽高。

‘use strict‘;
// 可以调整浏览器窗口大小试试:
console.log(‘window inner size: ‘ + window.innerWidth + ‘ x ‘ +
window.innerHeight);

 

技术图片

对应的,还有一个outerWidthouterHeight 属性,可以获取浏览器窗口的整个宽高。

3、navigator

navigator 对象表示浏览器的信息,最常用的属性包括:

  • navigator.appName:浏览器名称;
  • navigator.appVersion:浏览器版本;
  • navigator.language:浏览器设置的语言;
  • navigator.platform:操作系统类型;
  • navigator.userAgent:浏览器设定的User-Agent 字符串。
‘use strict‘;
console.log(‘appName = ‘ + navigator.appName);
console.log(‘appVersion = ‘ + navigator.appVersion);
console.log(‘language = ‘ + navigator.language);
console.log(‘platform = ‘ + navigator.platform);
console.log(‘userAgent = ‘ + navigator.userAgent);

 

技术图片

navigator 的信息可以很容易地被用户修改,所以JavaScript读取的值不一定是正确的。很多初学者为了针对不同浏览器编写不同的代码,喜欢用if 判断浏览器版本,

var width;
if (getIEVersion(navigator.userAgent) < 9) {
width = document.body.clientWidth;
} else {
width = window.innerWidth;
}

 

技术图片

但这样既可能判断不准确,也很难维护代码。正确的方法是充分利用JavaScript对不存在属性返回undefined 的特性,直接用短路运算符|| 计算:

var width = window.innerWidth || document.body.clientWidth;

 

技术图片

4、screen

screen 对象表示屏幕的信息,常用的属性有:

  • screen.width:屏幕宽度,以像素为单位;
  • screen.height:屏幕高度,以像素为单位;
  • screen.colorDepth:返回颜色位数,如8、16、24。
console.log(‘Screen size = ‘ + screen.width + ‘ x‘ + screen.height);

 

技术图片

5、location

location 对象表示当前页面的URL信息。例如,一个完整的URL:

http://www.example.com:8080/path/index.html?a=1&b=2#TOP

 

技术图片

可以用location.href 获取。要获得URL各个部分的值,可以这么写:

location.protocol; // ‘http‘
location.host; // ‘www.example.com‘
location.port; // ‘8080‘
location.pathname; // ‘/path/index.html‘
location.search; // ‘?a=1&b=2‘
location.hash; // ‘TOP‘

 

技术图片

要加载一个新页面,可以调用location.assign() 。如果要重新加载当前页面,调用location.reload() 方法非常方便

location.reload();
location.assign(‘https://blog.csdn.net/qq_43322680‘); // 设置一个新的URL地址

 

技术图片

6、document

document 对象表示当前页面。由于HTML在浏览器中以DOM形式表示为树形结构, document 对象就是整个DOM树的根节点。
document 的title 属性是从HTML文档中的xxx 读取的,但是可以动态改变:

document.title = ‘寇大大‘;

 

技术图片

要查找DOM树的某个节点,需要从document 对象开始查找。最常用的查找是根据IDTag Name
我们先准备HTML数据:

<dl id="code-menu" style="border:solid 1px #ccc;padding:6px;">
<dt>Java</dt>
<dd>Spring</dd>
<dt>Python</dt>
<dd>Django</dd>
<dt>Linux</dt>
<dd>Docker</dd>
</dl>

 

技术图片

用document 对象提供的getElementById() 和getElementsByTagName() 可以按ID获得一个DOM节点和按Tag名称获得一组DOM节点:

var menu = document.getElementById(‘code-menu‘);
var drinks = document.getElementsByTagName(‘dt‘);
var i, s;
s = ‘提供的饮料有:‘;
for (i=0; i<drinks.length; i++) {
s = s + drinks[i].innerHTML + ‘,‘;
}
console.log(s);

 

技术图片

document 对象还有一个cookie 属性,可以获取当前页面的Cookie。

document.cookie; // ‘v=123; remember=1 true; prefer=zh‘

 

技术图片

为了确保安全,服务器端在设置Cookie时,应该始终坚持使用httpOnly

7、history

history 对象保存了浏览器的历史记录,JavaScript可以调用history 对象的back() 或forward () ,相当于用户点击了浏览器的“后退”或“前进”按钮。

对于现代Web页面来说,由于大量使用A JAX和页面交互,我们都不应该会使用history 这个对象了。

JavaScript 操作BOM

标签:font   snippet   sel   标准   asc   语言   search   sdn   改变   

原文地址:https://www.cnblogs.com/koudada/p/14854650.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!