BOM DOM

172 阅读1分钟
  • BOM 知识点
1.navgator 浏览器信息
    eg:const ua=navgator.userAgent
       const isChrome=ua.indexOf('Chrome')
       console.log(isChrome)
2.screen 屏幕信息
    eg:screen.width
3.location 地址信息(url)
    eg:location.protocol //"https:"
       location.host //"juejin.cn"
       location.href //"https://juejin.cn/editor/drafts"
       location.search //"?utm_source=gold_browser_extension"
       location.hash //"#djsjdj"
       location.pathname //"/editor/drafts/699757"
4.history 前进后退信息
    eg:history.forward
       history.back
  • DOM事件 知识点
事件绑定 --dom.onclick =function(){alert("1=" + this.id);};
事件冒泡 --e.preventDefault()阻止默认事件 
          e.stopPropagation()阻止事件冒泡
事件代理 --addEventListener()