gpt4 book ai didi

Javascript在不进入的情况下找到数组中最接近的数字

转载 作者:数据小太阳 更新时间:2023-10-29 03:53:00 26 4
gpt4 key购买 nike

我有一个数字数组,例如 [300, 500, 700, 1000, 2000, 3000] 我想找到最接近的数字,而不是低于给定的数字。

例如,搜索 2200 将返回 3000(不是 2000)。

但是,如果我搜索 3200,因为数组中没有更高的东西,它应该返回 3000,因为没有其他选择。

我可以使用以下方法获得最接近该值的数字:

if (sizeToUse == null || Math.abs(this - monitorWidth) < Math.abs(sizeToUse - monitorWidth)) {
sizeToUse = this;
}

但是,我无法使整个过程正常运行。我的完整代码是:

$(function() {

var monitorWidth = window.screen.availWidth,
sizeToUse = null,
upscaleImages = false;

$('.responsive-img').each(function(){

var sizeData = $(this).attr('data-available-sizes');
sizeData = sizeData.replace(' ', '');

var sizesAvailable = sizeData.split(',');
sizesAvailable.sort(function(a, b){return b-a});

$.each(sizesAvailable, function(){
if(upscaleImages){
if (sizeToUse == null || Math.abs(this - monitorWidth) < Math.abs(sizeToUse - monitorWidth)) {
sizeToUse = this;
}
}
else{
//We don't want to upscale images so we need to find the next highest image available
}

});

console.log('Size to use ' + sizeToUse + ' monitor width ' + monitorWidth);

});


});

最佳答案

您可以使用此代码:

function closest(arr, closestTo){

var closest = Math.max.apply(null, arr); //Get the highest number in arr in case it match nothing.

for(var i = 0; i < arr.length; i++){ //Loop the array
if(arr[i] >= closestTo && arr[i] < closest) closest = arr[i]; //Check if it's higher than your number, but lower than your closest value
}

return closest; // return the value
}

var x = closest(yourArr, 2200);

fiddle :http://jsfiddle.net/ngZ32/

关于Javascript在不进入的情况下找到数组中最接近的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25061543/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com