Rumah >hujung hadapan web >tutorial js > 获取一组元素的最大宽度或高度JavaScript代码
这次给大家带来 获取一组元素的最大宽度或高度JavaScript代码, 用JavaScript获取一组元素的最大宽度或高度的注意事项有哪些,下面就是实战案例,一起来看一下。
下面这个函数,对于需要进行动态排版的开发人员非常有用。
var getMaxHeight = function ($elms) { var maxHeight = 0; $elms.each(function () { // In some cases you may want to use outerHeight() instead var height = $(this).height(); if (height > maxHeight) { maxHeight = height; } }); return maxHeight; };
使用方法:
$(elements).height( getMaxHeight($(elements)) );
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
Atas ialah kandungan terperinci 获取一组元素的最大宽度或高度JavaScript代码. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!