ユーザーのクライアントの幅を考慮して、ページの幅を変更するスクリプトを作成しようとしています。これは次のようなものです。
function adjustWidth() {
width = 0;
if (window.innerHeight) {
width = window.innerWidth;
} else if (document.documentElement && document.documentElement.clientHeight) {
width = document.documentElement.clientWidth;
} else if (document.body) {
width = document.body.clientWidth;
}
if (width < 1152) {
document.getElementsByTagName("body").style.width="950px";
}
if (width >= 1152) {
document.getElementsByTagName("body").style.width="1075px";
}
}
window.onresize = function() {
adjustWidth();
};
window.onload = function() {
adjustWidth();
};
このスクリプトを使用すると、Firebugからエラーが発生します。
document.getElementsByTagName("body").style is undefined
今私の質問は、どうすれば体のスタイルにアクセスできますか?cssシートでは、セレクターと幅のプロパティが定義されているためです。