JavaScript中BOM和DOM详解
bom(浏览器对象模型)
所有浏览器都支持window对象,他表示浏览器窗口。
所有js全局对象,函数,变量均自动成为window对象的成员。
全局变量是window对象的属性。
全局函数是window对象的方法。
基于html dom的document也是window对象的属性之一。
window.document.getelementbyid("header"); document.getelementbyid("header");
1. window 获取浏览器c窗口尺寸
浏览器窗口的内部高度(不包括滚动条,菜单栏,工具栏)
window.innerheight window.innerwidth
适用于internet explorer 8、7、6、5浏览器的window如下:
document.documentelement.clientheight document.documentelement.clientwidth
兼容方案获取浏览器宽高`
var width=window.innerwidth||document.documentelement.clientwidth||document.body.clientwidth var height=window.innerheight||document.documentelement.clientheight||document.body.clientheight
2. screen 获取电脑屏幕大小
属性返回访问者屏幕的宽/高度,以像素计,减去界面特性,比如窗口任务栏。
screen.availwidth
screen.availheight
3. window 开启关闭窗口
开启:window.open()
关闭:window.close()
<script type="text/javascript"> var newwindows; function newwindow() { newwindows = window.open("https://www.baidu.com/","baidu"); } function closewindow() { newwindows.close(); } </script>
4. 浏览器事件
名称 | 描述 |
---|---|
window.onload | 浏览器加载事件 |
window.onscroll | 浏览器滚动监听 |
window.onresize | 浏览器缩放监听 |
window.open | 打开事件 |
window.close | 关闭 |
5. location
名称 | 描述 |
---|---|
location.herf | 当前url |
location.hostname | 主机域名 |
location.pathname | 当前页面路径和文件名 |
location.port | 端口 |
location.protocol | 协议(http/https) |
location.assign | 加载新的文档 |
location.search | url参数 |
console.log(location.href); console.log(location.hostname); console.log(location.pathname); console.log(location.port); console.log(location.protocol);
6. history
浏览器历史,可以不用写window这个前缀
名称 | 描述 |
---|---|
history.length | 次数 |
history.back | 上一页 |
history.forward | 下一页 |
history.go |
小括号中,设定数值和 正负号,+数值 向下一个跳转的次数,-数值 向上一个跳转的次数,次数计算 : 结束页面 - 起始页面 ,错误跳转次数,没有执行效果 |
window.history.back();
7. navigator 获取浏览器相关信息
window.navigator
名称 | 描述 |
---|---|
navagator.useragent | 型号,内核,版本,平台 |
navagator.appversion | 浏览器版本信息 |
navagator.appname | 浏览器名称 |
navagator.platform | 操作系统 |
navagator.geolocation | 位置信息包括经度longitude和纬度latitude |
export function getcurrentbrowser() { var agent = navigator.useragent.tolowercase(); var regstr_ie = /msie [\d.]+;/gi; var regstr_ff = /firefox\/[\d.]+/gi var regstr_chrome = /chrome\/[\d.]+/gi; var regstr_saf = /safari\/[\d.]+/gi; //ie11以下 if (agent.indexof("msie") > 0) { return agent.match(regstr_ie); } //ie11版本中不包括msie字段 if (agent.indexof("trident") > 0 && agent.indexof("rv") > 0) { return "ie " + agent.match(/rv:(\d+\.\d+)/)[1]; } //firefox if (agent.indexof("firefox") > 0) { return agent.match(regstr_ff); } //chrome if (agent.indexof("chrome") > 0) { return agent.match(regstr_chrome); } //safari if (agent.indexof("safari") > 0 && agent.indexof("chrome") < 0) { return agent.match(regstr_saf); } } // get os export function getos() { let useragent = navigator.useragent.tolocalelowercase() //tolocalelowercase()将字母转小写 let wins = [ { sys: 'windows nt 5.0', alias: 'windows 2000', name: 'win2000' }, { sys: 'windows nt 5.1', alias: 'windows xp', name: 'winxp' }, { sys: 'windows nt 5.2', alias: 'windows 2003', name: 'win2003' }, { sys: 'windows nt 6.0', alias: 'windows vista', name: 'winvista' }, { sys: 'windows nt 6.1', alias: 'windows 7', name: 'win7' }, { sys: 'windows nt 6.2', alias: 'windows 8', name: 'win8' }, { sys: 'windows nt 10.0', alias: 'windows 10', name: 'win10' }, ] for (let win of wins) { if (useragent.indexof(win.sys) > -1 || useragent.indexof(win.alias) > -1) { return win.name } } } export function getedition() { var useragent = navigator.useragent.tolocalelowercase() if (useragent.indexof("win64") > -1 || useragent.indexof("wow64") > -1) { return '64位' } else { return '32位' } } export function ispc() { var useragentinfo = navigator.useragent; var agents = ["android", "iphone", "symbianos", "windows phone", "ipad", "ipod"]; var flag = true; for (var v = 0; v < agents.length; v++) { if (useragentinfo.indexof(agents[v]) > 0) { flag = false; break; } } return flag; } //获取url参数 返回对象 export function getrequest() { var url = location.search; //获取url中"?"符后的字串 var therequest = {} let strs = [] if (url.indexof("?") != -1) { var str = url.substr(1); strs = str.split("&"); for (var i = 0; i < strs.length; i++) { therequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]); } } return therequest; } export const browser = { versions: (function() { let u = navigator.useragent // let app = navigator.appversion return { trident: u.indexof('trident') > -1, // ie内核 presto: u.indexof('presto') > -1, // opera内核 webkit: u.indexof('applewebkit') > -1, // 苹果、谷歌内核 gecko: u.indexof('gecko') > -1 && u.indexof('khtml') === -1, // 火狐内核 mobile: !!u.match(/applewebkit.*mobile.*/), // 是否为移动终端 ios: !!u.match(/\(i[^;]+;( u;)? cpu.+mac os x/), // ios终端 android: u.indexof('android') > -1 || u.indexof('adr') > -1, // android终端 iphone: u.indexof('iphone') > -1, // 是否为iphone或者qqhd浏览器 ipad: u.indexof('ipad') > -1, // 是否ipad webapp: u.indexof('safari') === -1, // 是否web应该程序,没有头部与底部 weixin: u.indexof('micromessenger') > -1, // 是否微信 qq: u.match(/\sqq/i) === 'qq' // 是否qq } }()), language: (navigator.browserlanguage || navigator.language).tolowercase() }
8. 弹窗
1、警告框:window.alert()
2、输入框:window.prompt()
3、确认框: window.confirm()
dom (文档对象模型)
通过 html dom,使用 javascript访问 html 文档的所有元素。
当网页被加载时,浏览器会创建页面的文档对象模型
dom 分类
定义了访问和操作 html 文档的标准方法。dom 将 html 文档表达为树结构
html中,一切都是节点
- 元素节点
- 文本节点
- 属性节点
各个节点关系为:父子关系\兄弟关系
通过可编程的对象模型,javascript 获得了足够的能力来创建动态的 html
- javascript 能够改变页面中的所有 html 元素。
- javascript 能够改变页面中的所有 html 属性。
- javascript 能够改变页面中的所有 css 样式。
- javascript 能够对页面中的所有事件做出反应。
dom对象
对象 | 描述 |
---|---|
document:文档对象 | 每个载入浏览器的 html 文档都会成为 document 对象 |
element:元素对象 | element 对象可以拥有类型为元素节点、文本节点、注释节点的子节点。 |
attribute:节点属性对象 | attr 对象表示 html 属性 |
event:事件对象 | 事件在其中发生的元素、键盘按键的状态、鼠标的位置、鼠标按钮的状 |
document文档对象
document对象所有属性
属性 | 描述 |
---|---|
document.body | 获取body |
document.head | 获取head |
document.element | 获取html |
document.cookie | 获取cookie |
document.domain | 当前文档域名,可做跨域操作 |
document.lastmodified | 文档最后修改日期时间 |
document.referrer | 当前文档的url |
document.title | 标题 |
document.url | 当前文档的url |
document常用方法
方法 | 描述 |
---|---|
document.write() | 文档写入内容 |
document.open() | 打开一个流,以收集来自任何 document.write() 或 document.writeln() 方法的输出。 |
document.close() | 关闭用 document.open() 方法打开的输出流,并显示选定的数据。 |
document.writein() | 等同于 write() 方法,不同的是在每个表达式之后写一个换行符 |
获取元素 | |
document.getelementbyid() | 通过id获取元素 |
document.getelementsbyname() | 通过name获取相关元素数组 |
document.getelementsbytagname() | 通过标签获取相关元素数组 不能使用foreach循环 |
document.getelementsbyclassname() | 通过class获取相关元素数组 不能使用foreach循环 |
document.queryselector() | 获取第一个匹配条件的标签对象 --- 只会获取一个标签对象 |
document.queryselectorall() | 获取所有匹配条件的标签对象 执行结果是伪数组 |
创建元素 | |
document.createattribute() | 创建属性对象 |
document.createelement() | 创建元素对象 |
document.createtextnode() | 创建文本对象 |
document.createcomment() | 创建注释 |
element文档对象
element元素对象常用的方法
方法 | 描述 |
---|---|
元素增,删,改,克隆 | |
appendchild(doc) | 插入节点到最后 |
insertbefore(ndoc, oldoc) | 插入节点到某个节点之前 |
removechild(doc) | 移除该节点 |
replacechild(doc) | 替换节点 |
clonenode() | 克隆节点 |
clonenode(true) | 克隆节点及其内容 |
属性相关 | |
getattribute() | 获取属性 |
setattribute() | 设置属性 |
removeattribute() | 移除属性 |
getattributenode() | 指定属性节点 |
setattributenode() | 设置属性节点 |
removeattributenode() | 移除属性节点 |
getelementsbytagname() | 指定标签名的所有子元素的集合 |
nodelist.item() | nodelist 中位于指定下标的节点 |
element元素对象常用的属性
属性 | 描述 |
---|---|
id | 元素id |
style | 样式 |
classname | class属性 |
innerhml | 标签内容 |
innertext | 文本内容 |
获取节点 | |
childnodes | 获取元素子节点 |
parentnode | 获取元素父节点 |
attributes | 获取所有属性 |
children | 获取所有标签子节点 |
firstchild | 第一个子节点 |
lastchild | 最后一个子节点 |
firstelementchild | 第一个标签子节点 |
lastelementchild | 最后一个标签子节点 |
previoussibling | 上一个兄弟节点 |
nextsibling | 下一个兄弟节点 |
previouselementsibling | 上一个标签 |
nextelemntsibling | 下一个标签 |
parentnode | 父级节点 |
parentelement | 父级标签节点 |
nodename | 名字:元素节点--标签名称、属性节点--属性名、文本节点--#text、注释节点--#comment |
nodetype | 节点类型:1元素, 2属性 3文本, 8注释 |
nodevalue | 元素值:属性值、文本内容、注释内容 |
nodelist.length | nodelist 中的节点数 |
尺寸距离 | |
clientheight | 高度-内容+padding |
clientwidth | 宽度 |
offsetheight | 高度-内容+padding+border |
offsetwidth | 宽度 |
clienttop | 上边框宽度 |
clientleft | 做边框宽度 |
offsettop | 父物体顶部距离 |
offsetleft | 父物体左侧距离 |
dom事件操作
鼠标事件
名称 | 描述 |
---|---|
click | 点击事件 |
dbclick | 双击事件 |
contextmenu | 右键点击事件 |
mousedown | 按下事件,执行一次 |
mouseup | 抬起事件 |
mousemove | 鼠标移动 |
mouseover | 移入 |
mouseout | 移除 |
mouseenter | 移入,不发生冒泡 |
mouseleave | 移除,不冒泡 |
键盘事件
获取点击时的事件对象
- 普通版本
e/event
- ie低版本
window.event
兼容写法:var e=e||window.event
获取案件相关
- 按键名称:
e.key
- 按键编码:
e.keycode
- 兼容火狐:
e.which
兼容写法: e.keycode|| e.which
altkey ctrlkey shiftkey 判断是否按下 alt ctrl shift
触屏事件
名称 | 描述 |
---|---|
touchstart | 开始 |
touchend | 结束 |
touchmove | 移动 |
特殊事件
名称 | 描述 |
---|---|
animationend | 动画结束 |
transitionend | 过度结束 |
表单事件
名称 | 描述 |
---|---|
submit | 只有提交表单时,触发的事件 |
focus | 标签获取焦点会处触发的事件 |
input | 输入数据时会触发的事件 |
change | 失去加并且输入数据改变是触发事件 |
浏览器兼容处理
1、浏览器滚动高度
var height=document.documentelement.scrolltop||document.body.scrolltop var width=document.documentelement.scrollleft||document.body.scrollleft
- 有文档类型声明
document.documentelement.scrolltop document.documentelement.scrollleft
- 没有文档类型声明
document.body.scrolltop document.body.scrollleft
2、获取非行内样式属性
实际效果是,获取标签执行的样式属性
if(window.getcomputedstyle){ window.getcomponentstyle(dom).width }else{ doc.currentstyle.width }
3、获取事件对象
dom.onclick=function(e){ e=e||window.event }
4、获取事件对象目标
兼容低版本火狐浏览器,现在基本上不用了
dom.事件=function(){ e=e||window.event var target=e.target||e.srcelement }
5、按键数值
兼容低版本火狐浏览器,现在基本上不用了
document.onkeyup=function(e){ e=e||window.event var keynum=e.keycode||e.which }
6、事件的监听/事件的注册
function myaddevent(ele,type,fun){ 判断addeventlistener这个方法是否存在 if(ele.addeventlistener){ ele.addeventlistener(type,fun) }else{ ele.attachevent('on'+type,fun) } }
7、删除事件处理函数
function delfun(ele,type,fun){ if(ele.removeeventlistener){ ele.removeeventlistener(type,fun) }else{ ele.detachevent('on'+type,fun) } }
8、阻止事件传递
function stopbble(e){ if(e.stoppropagation){ e.stoppropagation() }else{ e.cancelbubble=true } }
9、阻止默认事件执行
if(e.preventdefault){ e.preventdefault }else{ e.returnvalue=false }
10、ajax对象
let xhr; try{ //普通路蓝旗 xhr=new xmlhttprequest() }catch(e){ //兼容ie低版本 xhr=new activexobject('microsoft.xmlhttp') } xhr.open('post','url') xhr.setrequestheader('content-type','application/x-www/form-url-encoded') xhr.send('name=111&age=222') //标准浏览器 xhr.onload = function(){} //兼容性写法 xhr.onreadystatechange=function(){ if(xhr.readystate==4){ let reg=/^a\d{2}$/ if(res.test(xhr.status)){ console.lof(json.parse(xhr.response)) } } }
兼容性写法,封装工具
生成验证码函数
function mysetvc() { var str = '0123456789abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxuz'; var newstr = ''; for (var i = 1; i <= 6; i++) { var num = parseint(math.random() * str.length) if (newstr.indexof(str[num]) === -1) { newstr += str[num]; } else { i--; } } return newstr; }
获取地址栏数据信息
function geturlval() { // 1,获取地址栏参数字符串 let str = decodeuri(window.location.search).substr(1); // 创建存储结果的对象 let obj = {}; // 2 转化为数组 根据 分号空格转化 const arr1 = str.split('&') // 3 循环变量数组,将数据字符串,根据=等号分割为数组 arr1.foreach(v => { let arr2 = v.split('='); obj[arr2[0]] = arr2[1]; }) return obj; }
生成table表格函数
// 参数1:数组,需要参照的数据数组 // 参数2:标签,需要写入内容的标签对象 function mysettable(array, element) { var str = ''; array.foreach(function (v, k) { str += '<tr>'; for (var key in v) { str += `<td>${v[key]}</td>`; } str += `<td><button index="${k}">删除</button></td>` str += '</tr>'; }); element.innerhtml = str; var obtns = document.queryselectorall('button'); mysetbutton(obtns, array, element); }
给button按钮绑定删除效果函数
// 参数1,button按钮数组 // 参数2,数据数组 // 参数3,写入内容的标签对象 function mysetbutton(btnarray, array, element) { btnarray.foreach(function (v) { v.onclick = function () { var bool = window.confirm('确定,是否删除'); if (bool) { var index = v.getattribute('index'); array.splice(index, 1); mysettable(array, element); } } }) }
处理监听事件兼容性函数
// 参数1:需要绑定事件的标签对象 // 参数2:需要绑定的事件类型,没有on // 参数3:需要绑定的事件处理函数 function myaddevent(element, type, fun) { if (element.addeventlistener) { // 普通浏览器 element.addeventlistener(type, fun); } else { // 低版本ie浏览器 element.attachevent('on' + type, fun); } }
获取css样式函数
// 参数1,需要属性的标签对象 // 参数2,需要属性的属性名称 function mygetstyle(element, type) { if (window.getcomputedstyle) { return window.getcomputedstyle(element)[type]; } else { return element.currentstyle[type]; } }
设定 cookie 函数
// 参数1: cookie 的键名 // 参数2: cookie 的键值 // 参数3: cookie 的时效(秒数) function mysetcookie(key, value, time) { // 1,获取当前的时间对象 const nowtime = new date(); // 2,获取当前时间的时间戳 --- 单位是毫秒 let timestamp = nowtime.gettime(); // 3,计算时间戳 当前时间戳 - 8小时 + 时效的时间(秒) // 获取带有时效的时间戳 是世界标准时间 let newtimestamp = timestamp - 8 * 60 * 60 * 1000 + time * 1000; // 4,将时间戳设定回时间对象 nowtime.settime(newtimestamp); // 5,兼容没有传第三个参数的情况 // 如果 time 是 undefined ,证明没有第三个参数,执行会话时效,赋值空字符串 // 如果 time 不是 undefined ,证明没有第三个参数,执行 nowtime 时间对象中的时间戳时效 let endtime = time === undefined ? '' : nowtime; // 6,设定cookie // 给cookie多设定一个属性,path=/ // 让www中的所有文件都可以使用设定的cookie document.cookie = `${key}=${value};expires=${endtime};path=/`; }
获取 cookie 的具体数据
function mygetcookie() { // 创建存储结果的对象 let obj = {}; // 1 获取cookie字符串 let str = document.cookie; // 2 转化为数组 根据 分号空格转化 const arr1 = str.split('; ') // 3 循环变量数组,将数据字符串,根据=等号分割为数组 arr1.foreach(v => { let arr2 = v.split('='); obj[arr2[0]] = arr2[1]; }) return obj; } function fun(){ console.log('我是新建的js文件中的内容,你压缩我了吗?') }
到此这篇关于javascript中bom和dom详解的文章就介绍到这了,更多相关js bom和dom内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 超详细的JavaScript基本语法规则
下一篇: 爬虫demo
推荐阅读
-
ajax中的json和jsonp详解
-
详解Django中的ifequal和ifnotequal标签使用
-
深入理解JavaScript和TypeScript中的class
-
SQL SERVER中强制类型转换cast和convert的区别详解
-
详解JavaScript的计时器和按钮效果设置
-
JavaScript 实现HTML DOM增删改查操作的常见方法详解
-
javascript中caller和callee详解_javascript技巧
-
javascript中parentNode,childNodes,children的应用详解_javascript技巧
-
Go中的nil切片和空切片区别详解
-
详解CSS3中常用的样式【基本文本和字体样式】