码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 里 window, document, screen, body 这几个名词的区别

时间:2021-04-19 16:04:43      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:屏幕   get   main   err   info   write   http   form   渲染   

在下面这个 StackOverflow 的线索里进行了讨论:

https://stackoverflow.com/questions/9895202/what-is-the-difference-between-window-screen-and-document-in-javascript

技术图片

window

Window is the main JavaScript object root, aka the global object in a browser, also can be treated as the root of the document object model. You can access it as window

相当于 浏览器 JavaScript 编程环境里的 root 对象,也可以看成是 document 对象模型的父节点。作为全局对象被访问。

window.screen

window 全局对象的一个属性,包含了物理屏幕的尺寸信息。

window.screen or just screen is a small information object about physical screen dimensions.

window.document

window.document or just document is the main object of the potentially visible (or better yet: rendered) document object model/DOM.

页面被渲染后的可见部分对应的 DOM 对象。

body

是上文描述的 document 对象中一个名为 body 的子节点。

Since window is the global object you can reference any properties of it with just the property name - so you do not have to write down window. - it will be figured out by the runtime.

因为 window 是全局对象,因此访问其属性时,可以省略 window. 的写法。

因此通过下列方式访问 window 里的属性,同样有效:

技术图片

更多Jerry的原创文章,尽在:"汪子熙":
技术图片

JavaScript 里 window, document, screen, body 这几个名词的区别

标签:屏幕   get   main   err   info   write   http   form   渲染   

原文地址:https://www.cnblogs.com/sap-jerry/p/14671256.html

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