<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div style="height:100px;"></div>
<div style="height:200px;"></div>
<div style="height:220px;"></div>
<div style="height:130px;"></div>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script>
(function($){
$.fn.maxHeight = function(){
var max = 0;
this.each(function(){
max = Math.max(max,$(this).height())
})
return max;
}
})(jQuery)
console.log( $("div").maxHeight() )
</script>
</body>
</html>
Jquery 最大高度
Posted AR13
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery 最大高度相关的知识,希望对你有一定的参考价值。
以上是关于Jquery 最大高度的主要内容,如果未能解决你的问题,请参考以下文章
在 jQuery 中,如何为“最大高度”CSS 属性设置动画?