首页 > 代码库 > ExtJS学习-----------Ext.Number,ExtJS对javascript中的Number的扩展
ExtJS学习-----------Ext.Number,ExtJS对javascript中的Number的扩展
关于ExtJS对javascript中的Number的扩展,可以参考其帮助文档,文档下载地址:http://download.csdn.net/detail/z1137730824/7748893
下面对其中的部分方法进行介绍:
(1)constrain
检查给定的数值是否在约束的范围内。 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
- number : Number
要检查的数值
- min : Number
范围的最小值
- max : Number
范围的最大值
Returns
- Number
The constrained value if outside the range, otherwise the current value
Returns a random integer between the specified range (inclusive)
Parameters
- from : Number
Lowest value to return.
- to : Number
Highst value to return.
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
ExtJS学习-----------Ext.Number,ExtJS对javascript中的Number的扩展