JavaScriptは現在のウィンドウのサイズをすべて取得しました.
1773 ワード
よくネットでこれらのものを調べます.とりあえずこれらの情報をここに置いておきます.予備としてください.
function a(){
s = " :"+ document.body.clientWidth;
s += "\r
:"+ document.body.clientHeight;
s += "\r
:"+ document.body.offsetWeight +" ( )";
s += "\r
:"+ document.body.offsetHeight +" ( )";
s += "\r
:"+ document.body.scrollWidth;
s += "\r
:"+ document.body.scrollHeight;
s += "\r
:"+ document.body.scrollTop;
s += "\r
:"+ document.body.scrollLeft;
s += "\r
:"+ window.screenTop;
s += "\r
:"+ window.screenLeft;
s += "\r
:"+ window.screen.height;
s += "\r
:"+ window.screen.width;
s += "\r
:"+ window.screen.availHeight;
s += "\r
:"+ window.screen.availWidth;
s = "\r
:"+ document.body.scrollHeight;
alert(s);
}