如何在jquery中使用圆值?

时间:2016-07-27 11:15:51

标签: javascript jquery

我想使用jquery

进行以下方式

如果50或55需要围绕60。 如果70或61需要围绕80。

如果131到139需要围绕140。

请任何人帮助我。

4 个答案:

答案 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;