JS 对浏览器相关的操作

// 获取浏览器 宽高
var width = window.innerWidth
|| document.documentElement.clientWidth || document.body.clientWidth

var height = window.innerHeight
|| document.documentElement.clientHeight || document.body.clientHeight

// 定时器 setInterval()
var timerId = setInterval (function() {
    /**
    clearInterval() 取消定时器
    clearInterval(timerId);
     */
    console.log(new Date);
}, 2000)
posted @ 2019-12-19 18:17  GetcharZp  阅读(240)  评论(0编辑  收藏  举报