ホームページ >ウェブフロントエンド >jsチュートリアル >ブラウザ ウィンドウの読み込みとサイズ変更イベントの例_JavaScript スキル

ブラウザ ウィンドウの読み込みとサイズ変更イベントの例_JavaScript スキル

WBOY
WBOYオリジナル
2016-05-16 16:58:011154ブラウズ
复制代码代码如下:

window.onload = function() {
var height = document .body.clientHeight;
document.getElementById("vivS").style.height = (height - 20) "px";
document.getElementById("emd").style.height = (height - 20) "px";
document.getElementById("ob").style.height = (height - 20) "px";
};

window.onresize = function() {
height = document.body.clientHeight;
document.getElementById("vivS").style.height = (height - 20) "px";
document.getElementById("emd").style.height = (height - 20) "px";
document.getElementById("ob").style.height = (height - 20) "px";
};
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。