我想检查一个值是否是某个数字的倍数,例如 10 的倍数,但我也希望能够将其更改为我想要的任何值。
if (directWinner == 10){
}
您将为此使用模数运算符:
if (directWinner % 10 === 0){
directWinner = 20;
}
毫无理由地添加了少量的 jQuery 吗?
$.modu = function(check, against) {
return check % against === 0;
}
if ( $.modu(directWinner, 10) ) {
directWinner = 20;
}
使用模运算符(假设为正整数):
if (directWinner % 10 === 0) {
...
}