js取整數與取餘數執行個體詳解

來源:互聯網
上載者:User

標籤:style   blog   class   code   java   tar   

分享下js取整數、取餘數的方法。

1.丟棄小數部分,保留整數部分
parseInt(5/2)
2.向上取整,有小數就整數部分加1
Math.ceil(5/2)
3,四捨五入.
Math.round(5/2)
4,向下取整
Math.floor(5/2)
Math 對象的方法
FF: Firefox, N: Netscape, IE: Internet Explorer
方法 描述 FF N IE
abs(x) 返回數的絕對值 1 2 3
acos(x) 返回數的反餘弦值 1 2 3
asin(x) 返回數的反正弦值 1 2 3
atan(x) 以介於 -PI/2 與 PI/2 弧度之間的數值來返回 x 的反正切值 1 2 3
atan2(y,x) 返回從 x 軸到點 (x,y) 的角度(介於 -PI/2 與 PI/2 弧度之間) 1 2 3
ceil(x) 對一個數進行上舍入。 1 2 3
cos(x) 返回數的餘弦 1 2 3
exp(x) 返回 e 的指數。 1 2 3
floor(x) 對一個數進行下舍入。 1 2 3
log(x) 返回數的自然對數(底為e) 1 2 3
max(x,y) 返回 x 和 y 中的最高值 1 2 3
min(x,y) 返回 x 和 y 中的最低值 1 2 3
pow(x,y) 返回 x 的 y 次冪 1 2 3
random() 返回 0 ~ 1 之間的隨機數 1 2 3
round(x) 把一個數四捨五入為最接近的整數 1 2 3
sin(x) 返回數的正弦 1 2 3
sqrt(x) 返回數的平方根 1 2 3
tan(x) 返回一個角的正切 1 2 3
toSource() 代表對象的原始碼 1 4 -
valueOf() 返回一個 Math 對象的原始值

例子:

<script type="text/javascript">//取整function getResult(num){return parseInt(num);}//四捨五入到num後面的n位function getResult(num,n){return Math.round(num*Math.pow(10,n))/Math.pow(10,n);} www.jbxue.com//截取n位function getresult(num,n){return num.toString().replace(new RegExp("^(\\-?\\d*\\.?\\d{0,"+n+"})(\\d*)$"),"$1")+0;}</script>

其他:

var mLength = textMn.length; var mFirst = parseInt(mLength/60); //取整 //alert(mLength); var mLast = mLength; //取餘 if(mLast>0){ $(".mood_content").height((mFirst+1)*20);}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.