js 四舍五入取整数

js 四舍五入取整数一、四舍五入取整数Math.round()console.log(Math.round(2.5));//3console.log(Math.round(2.4));//2<script>functionmyFunction(){ document.getElementById(“demo”).innerHTML=Math.round(2.5);}</script>结果:3二、取整数部分,不四舍五入parseInt()$(“#order_…

一、四舍五入取整数 Math.round()

console.log(Math.round(2.5));//3

console.log(Math.round(2.4));//2

<script>
function myFunction(){
	document.getElementById("demo").innerHTML=Math.round(2.5);
}
</script>

结果:3

 

二、取整数部分,不四舍五入 parseInt()

$("#order_total").html(parseInt(total));

console.log(parseInt(2.5));//2

console.log(parseInt(2.4));//2

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/37012.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注