codecamp

window属性:length

length属性

length 属性返回 window 中的帧数(<frame>或者<iframe>元素)。

length属性语法

framesCount = window.length;
  • framesCount 是帧的数量。

length属性示例

if (window.length) {
  // this is a document with subframes
}

规范

规范 状态 注释
HTML Living Standard 
该规范中'Window.length'的定义。
Living Standard
 
HTML5 
该规范中'Window.length'的定义。
Recommendation

window属性:isSecureContext
window属性:localStorage
温馨提示
下载编程狮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; }