我想使用jquery
进行以下方式如果50或55需要围绕60。 如果70或61需要围绕80。
如果131到139需要围绕140。
请任何人帮助我。
答案 0 :(得分:1)
只需使用JavaScript:
function round(a) {
return Math.round(a / 100) * 100
}
console.log(round(50), round(60), round(160), round(180));

答案 1 :(得分:1)
131进入140和51到60。
console.log(myop(51));
console.log(myop(131));
function myop(val) {
return (Math.ceil(val / 10) * 10);
}
答案 2 :(得分:1)
检查一下:
http://fiddle.jshell.net/8Lyab/37/
var f = 60;
var tenth = Math.round(f/100)*100;
alert(tenth)
答案 3 :(得分:0)
你不需要jquery来做这件事。您可以使用Math.ceil()
:
Math.ceil(num/ 100.0) * 100;