如果数字在数字部分中
不知道如何表达这个。我目前有一个脚本,我希望变得更加动态...
if(endpos < 7){
$('#div').tinycarousel({start:1});
}else if(endpos>6 && endpos<13){
$('#div').tinycarousel({start:2});
}else if(endpos>12 && endpos<19){
$('#div').tinycarousel({start:3});
}else if(endpos>18 && endpos<25){
$('#div').tinycarousel({start:4});
}else{
$('#div').tinycarousel({start:5});
}
所以这现在对我有用,但是如果 endpos = 150,我会陷入 start:5 的困境。我可以继续写音阶,让它们达到 1000,但这样做没有任何意义。我确信有一种方法可以一次性编写它,以便“endpos”每增加 6 个部分,“start”的数字就增加 1。
Not sure how to word this. I currently have a script that I would like to be more dynamic...
if(endpos < 7){
$('#div').tinycarousel({start:1});
}else if(endpos>6 && endpos<13){
$('#div').tinycarousel({start:2});
}else if(endpos>12 && endpos<19){
$('#div').tinycarousel({start:3});
}else if(endpos>18 && endpos<25){
$('#div').tinycarousel({start:4});
}else{
$('#div').tinycarousel({start:5});
}
So this works for me now, but what if endpos = 150, I am stuck with start:5. I could keep writing the scales so they went to 1000, but it doesn't make any sense to do that. I am sure there is a way to write it one time so that the number for "start" increases by 1 for each section of 6 that "endpos" increases.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ceil 将采用 0.5 并使其成为下一个最大整数,在本例中为 1。
ceil will take let's say .5 and make it the next highest whole number, 1 in this case.
将你的终点除以 6,结果就是你的“起点”。例如,如果 endpos 是 24,则 start 将为 24/6 即 4。如果结果是实数,则取 ceil 以获得正确的值。
Divide your endpos by 6, the result will be your 'start'. For instance, if endpos is 24, start will be 24/6 I.e. 4. In case the result is a real number, take the ceil to get correct value.