0

window オブジェクトの location プロパティと document オブジェクトの location プロパティに違いはありますか?

window.location || document.location  // That is the question.
  • それらのプロパティは同じですか?
  • ブラウザーのサポートは異なりますか?
4

2 に答える 2

0

これら 2 つのオブジェクトは同一です。

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

どちらも Location オブジェクトを参照します。

于 2013-02-26T07:51:17.557 に答える
-1
window.location represent position in current view of page in browser window

document.location現在表示されている完全なドキュメント/ページの位置を表します

たとえば、http://www.nationalgeographic.com/ではDAILY NEWS セクションまでありwindow、ページ全体が最後までスクロールされます。document

于 2013-02-26T07:56:09.303 に答える