码迷,mamicode.com
首页 > Web开发 > 详细

js中的除法

时间:2016-03-31 10:43:13      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:

最近做了一个分页的用户控件,使用到了js中的除法。整理如下。

Math.ceil();向上舍入,比如Math.ceil(3/2)=2;

Math.floor();向下舍入,比如Math.floor(3/2)=1;

Math.round();四舍五入,比如Math.round(3/2)=2;Math.round(5/2)=2;

 

同时也用到了ExtJs中对获取Store中的一些方法:

 App.Store1.pageSize;获取当前Store中的页面大小;

 App.Store1.currentPage;获取当前Store中的当前页码;

App.Store1.totalCount;获取当前Store中的全部数量;

 

js中的除法

标签:

原文地址:http://www.cnblogs.com/zhangqi0924/p/5340078.html

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