Warning: mkdir(): No space left on device in /www/wwwroot/test001/func.php on line 253

Warning: file_put_contents(./cachefile_yuan/hillsideartistshouse.com/cache/1d/95d10/eeeb6.html): failed to open stream: No such file or directory in /www/wwwroot/test001/func.php on line 241
JS的常見瀏覽器對象模型BOM操作_網站建設_網站製作_做網站的公司_999元全包_漢獅網絡

百姓彩票

先設計 後付費,服務更有保障

2024我們與您攜手共贏,為您的企業形象保駕護航!

JS的常見瀏覽器對象模型BOM操作

瀏覽器相關信息

// 瀏覽器信息
navigator.userAgent // Mozilla/5.0 AppleWebKit/537.36 Chrome/54.0.2840.71 Safari/537.36
// 運行瀏覽器的操作係統平台
navigator.platform // MacIntel

瀏覽記錄曆史

// 前進
history.forward()
// 後退
history.back()

url 信息 :頁麵跳轉

// 當前頁麵會記入瀏覽記錄曆史
locations.href = 'http://www.baidu.com'
// 當前頁麵不會記入瀏覽記錄曆史
locations.replace('http://www.baidu.com')
頁麵重新加載
locations.reload()
獲得當前 url 的信息
// 假設當前 url 是 http://192.168.31.194:8000/jquery/index.html?a=3&c=aa#b

locations.href // 完整的url
locations.hostname // 192.168.31.194
locations.host // 192.168.31.194:8000
locations.port // 8000
locations.protocol // http:
locations.search // ?a=3&c=aa
locations.hash // #b
locations.pathname // /jquery/index.html

全局對象 : 信息彈出框

alert('你很帥!')
確認彈出框
var isReady = confirm('準備好來嗎?')
if (isReady) {
  
} else {
  
}

輸入信息彈出框

var name = prompt('請輸入你的名字')
console.log(name)
打開一個新窗口
open('http://baidu.com')
// 改變某個窗口的 url
open('http://baidu.com', 'a')
open('http://youku.com', 'a') // 上麵窗口的地址會從 百度 變成 優酷的
過段時間後執行
// 1 秒後執行
setTimeout(function() {
  // doSth
}, 1000)

每隔一段時間執行

var i = 1
// 每隔 1 秒後執行
var runId = setInterval(function(){
  console.log(i++)
  if(i >= 10) {
    clearInterval(runId) // 停止執行
  }
}, 1000)

屏幕每次刷新時執行

一般是渲染一些 UI。
var targetEl = document.querySelector('.tar')
var res
var isStop
var runId = requestAnimationFrame(function(){
  targetEl.text(res)
  if(isStop) {
    cancelAnimationFrame(runId)
  }
})

在控製台輸出信息
console.log('日誌信息')
console.warn('警告信息')
console.info('普通信息')
console.error('錯誤信息')

console.log('1+2 = %d', 3)
var person = {name: 'Joel', gender: '男'}
console.log('名字:%s,性別:%s', person.name, person.gender)


我漢獅網絡提供網站建設、APP軟件開發、軟件開發、小程序開發、網站網絡營銷等一站式服務,歡迎企業谘詢
免費谘詢:18838171308

先設計 後付費,服務更有保障

2024我們與您攜手共贏,為您的企業形象保駕護航!

在線客服
聯係方式

24h谘詢電話

18838171308

微信二維碼
微信