赞
踩
js中获取余数,取商,一般用于一些特定循环的数据中,例如: 你要得到(0,1,2,3)==> 这个使用取余即可实现
var num = parseInt(4%3); //取余 console.log(num); //1 var num = parseInt (7/3); //取商 console.log(num); //2