有没有一种简单的方法可以从jQuery中的元素数组中找到min / max属性?
我经常发现自己根据最小和最大对应物动态调整元素组。大多数情况下,这与元素的宽度和/或高度有关,但我确信这可以应用于元素的任何属性。
我通常做这样的事情:
var maxWidth = 0;
$('img').each(function(index){
if ($(this).width() > maxWidth)
{
maxWidth = $(this).width();
}
});
但似乎你应该能够做到这样的事情:
var maxWidth = $('img').max('width');
jQuery中是否存在此功能,或者有人可以解释如何创建执行此操作的基本插件吗?
谢谢!
答案 0 :(得分:74)
使用Fast JavaScript Max/Min - John Resig
google,yahoo和bing三个徽标的示例。
HTML
<img src="http://www.google.co.in/intl/en_com/images/srpr/logo1w.png" alt="Google Logo" /><br/>
<img src="http://l.yimg.com/a/i/ww/met/yahoo_logo_in_061509.png" alt="Yahoo Logo" /><br/>
<img src="http://www.bing.com/fd/s/a/h1.png" alt="Bing Logo" />
的Javascript
$(document).ready(function(){
// Function to get the Max value in Array
Array.max = function( array ){
return Math.max.apply( Math, array );
};
// Function to get the Min value in Array
Array.min = function( array ){
return Math.min.apply( Math, array );
};
//updated as per Sime Vidas comment.
var widths= $('img').map(function() {
return $(this).width();
}).get();
alert("Max Width: " + Array.max(widths));
alert("Min Width: " + Array.min(widths));
});
P.S:jsfiddle here
答案 1 :(得分:15)
您可以在OO的上下文之外使用apply
,无需扩展原型:
var maxHeight = Math.max.apply( null,
$('img').map(function(){ return $(this).height(); }).get() );
答案 2 :(得分:3)
我喜欢在jQuery文档中作为.map()
示例发布的关于如何equalize div heights的优雅解决方案。我基本上调整它以使用宽度并制作a demo。
$.fn.limitWidth = function(max){
var limit = (max) ? 'max' : 'min';
return this.width( Math[limit].apply(this, $(this).map(function(i,e){
return $(e).width();
}).get() ) );
};
// Use the function above as follows
$('.max-width').limitWidth(true); // true flag means set to max
$('.min-width').limitWidth(); // no flag/false flag means set to min
答案 3 :(得分:1)
看一下calculation plugin,也许它可以帮助你解决问题。 它们提供了许多数学函数,例如DOM元素的min,max和avg。
示例:
$("input[name^='min']").min();
$("input[name^='max']").max();
答案 4 :(得分:1)
作为插件滚动以返回宽度和高度的最小值 - 最大值:
// Functions to get the Min & Max value in Array
if (!Array.min) { Array.min = function( array ){return Math.min.apply( Math, array )} }
if (!Array.max) { Array.max = function( array ){return Math.max.apply( Math, array )} }
(function( $ ){ // Standard jQuery closure to hide '$' from other libraries.
// jQuery plug-in to get the min and max widths of a set of elements
$.fn.dimensionsMinMax = function(whnx) {
/*
################################################################################
Name
====
dimensionsMinMax(whnx) - jQuery plug-in to get min & max width & height
Parameters
==========
whnx - A 4-element array to receive the min and max values of the elements:
whnx[0] = minimum width;
whnx[1] = maximum width;
whnx[2] = minimum height;
whnx[3] = maximum height.
Returns
=======
this - so it can be "chained".
Example
=======
var minmax = new Array(4);
var number_of_images = $('img').dimensionsMinMax(minmax).class('abc').length;
console.log('number of images = ', number_of_images);
console.log('width range = ', minmax[0], ' to ', minmax[1]);
console.log('height range = ', minmax[2], ' to ', minmax[3]);
################################################################################
*/
var widths = new Array(this.length);
var heights = new Array(this.length);
this.each(function(i){
$this = $(this);
widths[i] = $this.width();
heights[i] = $this.height();
});
whnx[0] = Array.min( widths);
whnx[1] = Array.max( widths);
whnx[2] = Array.min(heights);
whnx[3] = Array.max(heights);
return this;
}
})( jQuery ); // End of standard jQuery closure.
答案 5 :(得分:0)
我写了一个简单的插件来做到这一点 - 请参阅gregbrown.co.nz/code/jquery-aggregate。安装它后,你可以这样做:
var maxWidth = $('img').aggregate('width', 'max');
答案 6 :(得分:0)
您可以使用本机“排序”功能来更好地控制比较哪些元素
Array.prototype.deepMax = function(comparator){
if(typeof comparator === 'function'){
var sorted = this.slice(0).sort(comparator);
return sorted[sort.length - 1];
}
return Math.max.apply(Math, this);
};
你可以称之为
var maxWidth = $('img').deepMax(function(a, b){
//-1 if a < b; +1 otherwise
return $(a).width() - $(b).width();
});
OR
您可以使用Underscore的 _。max ,这可以像...一样实施
Array.prototype.max = function(iterator){
if(!iterator && obj[0] === +obj[0])
return Math.max.apply(Math, this);
var result = -Infinity, lastComputed = -Infinity;
this.forEach(function(value, index){
var computed = iterator ? iterator(value, index, this) : value;
computed > lastComputed && (result = value, lastComputed = computed);
});
return result;
};
var maxWidth = $('img').max(function(val){ return $(val).width();});
答案 7 :(得分:-1)
Plugins/Authoring page实际上有一个确定最高元素的例子。
这基本上就是你在这里所拥有的,只是插入一个插件以便于访问。也许你可以根据自己的需要选择它。