codecamp

window属性:mozPaintCount

mozPaintCount属性

mozPaintCount属性用于返回当前文档在此 window 中绘制到屏幕的次数。

mozPaintCount属性语法

var paintCount = window.mozPaintCount;
  • paintCount 用于存储 window.mozPaintCount 属性值。
  • window.mozPaintCount 该属性的值为 long,并且在第一次创建文档时开始为零,每次绘制文档时递增一次。

规范

不属于任何 W3C 技术规范或建议。

window属性:mozInnerScreenY
window属性:name
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Fetch API官方文档指南

Fetch API方法

WindowOrWorkerGlobalScope执行者:window

window属性

WindowOrWorkerGlobalScope执行者:WorkerGlobalScope

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }