jQuery实现随窗口大小变化的自适应高度元素

代码如下:

/*
	将具有 autoheight 属性的 div 元素设置为自动高度
	
	用法:给需要的 div 元素添加 autoheight 属性,如:<div autoheight> ... </div>
		  可以修改选择符,如写为 ".autoheight" 或是其它的以匹配需要的元素。
	
*/

$(function () {
	var _jahDivs = $("div[autoheight]");
	if (_jahDivs.length > 0) {
		_jahDivs.css("overflow", "auto");
		$(window).resize(function () {
			var _addHeight = $(window).height() - $("body").outerHeight(true);
			var _height = _jahDivs.height();
			_jahDivs.height(_height + _addHeight - (_jahDivs.outerHeight(true) - _height) / 2);
		}).resize();
	}
});
来自:http://blog.csdn.net/triumph/article/details/6666409

关键词: jQuery jquery教程