Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.scrollMaxX

概要

文書が水平スクロールされ得る最大ピクセル数を返します。

構文

xpix = window.scrollMaxX

引数

  • xpix は、ピクセル数です。

// ページの右端までスクロールします。
 var maxX = window.scrollMaxX;
 window.scrollTo(maxX, 0);

注記

このプロパティは、文書の幅の合計を取得するために使用してください。文書の幅の合計は、window.innerWidth + window.scrollMaxX と同等です。

window.scrollMaxY も参照してください。

仕様

DOM Level 0。どの標準にも属しません。

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: teoli, AshfaqHossain, ethertank, Potappo
 最終更新者: AshfaqHossain,