关于ExtJS对javascript中的Number的扩展,可以参考其帮助文档,文档下载地址:http://download.csdn.net/detail/z1137730824/7748893
下面对其中的部分方法进行介绍:
(1)constrain
constrain( Number number, Number min, Number max )
: Number
检查给定的数值是否在约束的范围内。 If the number is already within the 如果再范围内就返回此数值。否则,如果大于最大值则返回最大值,如果小于最小值则返回最小值。, otherwise the min or max value is returned depending on which side of the range is 注意本方法不改变给定的数值本身。 Note that this method returns the constrained value but does
not change the current number.
Parameters
Returns
- Number
The constrained value if outside the range, otherwise the current value
(2)randomInt,随机产生一个范围内的随机数
randomInt( Number from, Number to )
: Number
Returns a random integer between the specified range (inclusive)
Parameters
(3)toFixed,四舍五入取得输入的数值的小数点后几位
toFixed( Number value, Number precision )
Formats a number using fixed-point notation
Parameters
- value : Number
The number to format
- precision : Number
The number of digits to show after the decimal point