window.location or document.location

window.location or document.location

本文关键字:location document or window      更新时间:2023-09-26

窗口对象的位置属性和文档对象的位置属性有什么区别吗?

window.location || document.location  // That is the question.
  • 它们的属性相同吗?
  • 他们有不同的浏览器支持吗?

这两个对象是相同的:

console.log(window.location === document.location) // true

它们都指向Location对象

window.location represent position in current view of page in browser window

document.location表示当前显示完整文档/页面的位置

e。

在http://www.nationalgeographic.com/到DAILY NEWS部分是window,整个页面向下滚动直到结束是document