欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

瀏覽器窗口加載和大小改變事件示例

 更新時(shí)間:2014年02月27日 17:31:29   作者:  
這篇文章主要介紹了瀏覽器窗口加載和大小改變事件,需要的朋友可以參考下
復(fù)制代碼 代碼如下:

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";
};

相關(guān)文章

最新評(píng)論