定义和用法
onresize 事件会在窗口或框架被调整大小时发生。
语法
In HTML:
<element onresize="SomeJavaScriptCode">
JavaScript 中:
window.onresize=function(){SomeJavaScriptCode};
实例
window.onresize=function(){
var bHeight = document.body.clientHeight;//网页可见区域高
$("#unfiledFather").css("height",(bHeight-70-50)+"px");//左边
$("#filedFather").css("height",bHeight-70+"px");//右边
};
实际效果gif图: