码迷,mamicode.com
首页 > Web开发 > 详细

JS 对浏览器相关的操作

时间:2019-12-19 19:36:20      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:set   color   date   fun   操作   class   The   var   new   

// 获取浏览器 宽高
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)

JS 对浏览器相关的操作

标签:set   color   date   fun   操作   class   The   var   new   

原文地址:https://www.cnblogs.com/GetcharZp/p/12069367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!