这篇文章主要介绍“javascript除法取整数的方法”,在日常操作中,相信很多人在javascript除法取整数的方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”javascript除法取整数的方法”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
在javascript中,可以使用parseInt在除法中取整数,语法格式为“parseInt字符串,要解析的数字的基数)”。“parseInt)”函数可解析一个字符串,并返回一个整数。
本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
Math.roundx) 四舍五入,如Math.round0.70),结果为1;Math.round0.39),结果为0;
Math.floorx) 向下舍入,如Math.floor0.70)与Math.floor0.39),结果均为0;
Math.ceilx)向上舍入,如Math.ceil0.70)与Math.ceil0. 39),结果均为1;
parseIntx)丢弃小数部分,保留整数部分,parseInt3.14),结果为3。
Math.floor):
_.eachcart_items,functionkey){ var promotions_barcode=promotions_items[0].barcodes; ifpromotions_barcode.indexOfkey.barcode)!=-1){ key.promotions_count=Math.floorkey.count/3);//获取3的整数倍,向下取整 } else{ key.promotions_count=0; } });
parseInt):
function getResultnum){ return parseIntnum); }
Math.ceil):
function getResultnum,n){ return Math.ceilnum); }