输入html数值的圆形数组

时间:2018-01-18 04:44:29

标签: javascript html

我需要一个用作循环数组的html数字字段。我的意思是,如果数字的选择可能性从1到5,并且该字段的当前值是5,如果我在该字段中按“向上”,它将返回1.此外,如果它当前设置为1,我按“向下”,它应该到5。

1 个答案:

答案 0 :(得分:0)

假设您的值范围为[0 ... 4],使用(current+1)%5表示向上键和向下键

if((current-1)<0) return 5
else return (current-1)