1. 程式人生 > >2018.10.03 學習筆記 // 前端Javascript // BOM與DOM

2018.10.03 學習筆記 // 前端Javascript // BOM與DOM

題目:

  • 如何檢測瀏覽器的型別
  • 拆解url的各部分

知識點

  • navigator
  • screen
  • location
  • history
//navigator
var ua = navigator.userAgent  //字串
var isChrome = ua.indexOf('Chrome')
console.log(isChrome)

//screen
console.log(screen.width)
console.log(screen.height)

//location
console.log(location.href)
console.log(location.protocol) //'http:' 'https:'協議
console.log(locaiton.host) //'blog.csdn.net'域
console.log(locaiton.pathname) //'classindex.html'路徑
console.log(location.search) //'?t=1'引數
console.log(location.hash)

//history
history.back()
history.forward()

解答:

  • 如何檢測瀏覽器的型別
  • 拆解url的各部分