DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> 浏覽器窗口加載和大小改變事件示例
浏覽器窗口加載和大小改變事件示例
編輯:JavaScript綜合知識     

 這篇文章主要介紹了浏覽器窗口加載和大小改變事件,需要的朋友可以參考下

 代碼如下: 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";  };   
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved