码迷,mamicode.com
首页 > 编程语言 > 详细

ExtJS学习-----------Ext.Number,ExtJS对javascript中的Number的扩展

时间:2014-08-23 17:48:31      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:extjs   number   constrain   randomint   tofixed   


关于ExtJS对javascript中的Number的扩展,可以参考其帮助文档,文档下载地址:http://download.csdn.net/detail/z1137730824/7748893

下面对其中的部分方法进行介绍:

(1)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

  • number : Number

    要检查的数值

  • min : Number

    范围的最小值

  • max : Number

    范围的最大值

Returns

  • Number

    The constrained value if outside the range, otherwise the current value

(2)randomInt,随机产生一个范围内的随机数

Number from, Number to ) : Number

Returns a random integer between the specified range (inclusive)

Parameters

  • from : Number

    Lowest value to return.

  • to : Number

    Highst value to return.

(3)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










ExtJS学习-----------Ext.Number,ExtJS对javascript中的Number的扩展

标签:extjs   number   constrain   randomint   tofixed   

原文地址:http://blog.csdn.net/z1137730824/article/details/38779549

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!