codecamp

window属性:document

document属性

window.document 返回对窗口中包含的文档的引用。

注意: 

Firefox 3 改变了 Windows 文档的安全性,因此只有它所在的域可以访问文档。

虽然这可能会破坏一些现有的网站,但这是 Firefox 3 和 Internet Explorer 7 所做的一项举措,并且会提高安全性。

document属性语法

doc = window.document 

document属性参数

  • doc 是对 document 的对象引用。

document属性示例

以下是一个 document 属性示例:

<!DOCTYPE html>
<html>
<head>
   <title>Hello, World!</title>
</head>
<body>

<script type="text/javascript">
   var doc = window.document;
   console.log(doc.title); // Hello, World!
</script>

</body>
</html>

规范

规范状态注释
HTML Living Standard
在该规范中定义了'Window.document'。
Living Standard
 
HTML5 
该规范中'Window.document'的定义。
Recommendation
 
window属性:dialogArguments属性
window属性:frameElement
温馨提示
下载编程狮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; }