window オブジェクトの location プロパティと document オブジェクトの location プロパティに違いはありますか?
window.location || document.location // That is the question.
- それらのプロパティは同じですか?
- ブラウザーのサポートは異なりますか?
window オブジェクトの location プロパティと document オブジェクトの location プロパティに違いはありますか?
window.location || document.location // That is the question.
これら 2 つのオブジェクトは同一です。
console.log(window.location === document.location) // true
どちらも Location オブジェクトを参照します。
window.location represent position in current view of page in browser window
document.location
現在表示されている完全なドキュメント/ページの位置を表します
たとえば、http://www.nationalgeographic.com/ではDAILY NEWS セクションまでありwindow
、ページ全体が最後までスクロールされます。document