ホームページ > 記事 > ウェブフロントエンド > HTMLドキュメントの種類を詳しく解説 おすすめ_HTML/Xhtml_Webページ制作
私のものは次のとおりです:
ブログパーク:
HTML ドキュメント タイプのリファレンスについて: http://i.wanz.im/2010/05/28/why_doctype_html/
調べてみたところ、JSで取得した現在のページの見た目のサイズとページのスクロール位置に違いがあることが分かりました!
このページには 2000*2000 DIV が含まれており、IE と Chrome によってさまざまな HTML ドキュメント タイプでコンパイルされたデータは次のとおりです:
標準:
特殊:
HTML ドキュメント タイプが HTML に追加されていない場合、デフォルトで特殊モードになります。
Chrome标准 | Chrome特殊 | IE标准 | IE特殊 | |
document.body.clientTop; | 0 | 0 | 0 | 2 |
document.body.clientLeft; | 0 | 0 | 0 | 2 |
document.body.clientWidth; | 473 | 473 | 471 | 471 |
document.body.clientHeight; | 2000 | 625 | 2000 | 604 |
document.body.scrollTop; | 224 | 289 | 0 | 255 |
document.body.scrollLeft; | 315 | 388 | 0 | 278 |
document.body.scrollWidth; | 2005 | 2005 | 2005 | 2010 |
document.body.scrollHeight; | 2010 | 2010 | 2000 | 2005 |
document.body.offsetTop; | 0 | 0 | 0 | 0 |
document.body.offsetLeft; | 0 | 0 | 0 | 0 |
document.body.offsetWidth; | 473 | 473 | 471 | 492 |
document.body.offsetHeight; | 2000 | 2000 | 2000 | 625 |
document.documentElement.clientTop; | 0 | 0 | 0 | 0 |
document.documentElement.clientLeft; | 0 | 0 | 0 | 0 |
document.documentElement.clientWidth; | 473 | 473 | 471 | 0 |
document.documentElement.clientHeight; | 625 | 2010 | 604 | 0 |
document.documentElement.scrollTop; | 0 | 0 | 199 | 0 |
document.documentElement.scrollLeft; | 0 | 0 | 241 | 0 |
document.documentElement.scrollWidth; | 2005 | 2005 | 2005 | 492 |
document.documentElement.scrollHeight; | 2010 | 2010 | 2010 | 625 |
document.documentElement.offsetTop; | 0 | 0 | 0 | 0 |
document.documentElement.offsetLeft; | 0 | 0 | 0 | 0 |
document.documentElement.offsetWidth; | 473 | 473 | 492 | 492 |
document.documentElement.offsetHeight; | 2010 | 2010 | 625 | 625 |
分析:
ページの合計幅: document.body.scrollWidth;
ページの合計高さ: document.body.scrollHeight;
Chrome ページの位置: document.body.scrollTop;
Chrome 標準ページ表示領域: document.documentElement.clientWidth; document.documentElement.clientHeight;
Chrome 特別ページ表示領域: document.body.clientWidth; document.body.clientHeight;
IE 標準ページ位置: document.documentElement .scrollTop ; document.documentElement.scrollLeft;
IE 標準ページの表示領域: document.documentElement.clientHeight;
IE の特殊ページの位置: document.body.scrollTop; >IE 特別ページの表示領域: document.body.clientWidth; document.body.clientHeight;
JS コードは次のとおりです: