JavaScript 保留兩位小數

來源:互聯網
上載者:User

標籤:小數   var   保留   div   style   表達   不能   5.7   結果   

以下處理結果會四捨五入:

var num =2.446242342;num = num.toFixed(2);  // 輸出結果為 2.45

不四捨五入

以下處理結果不會四捨五入:

第一種,先把小數邊整數:

Math.floor(15.7784514000 * 100) / 100   // 輸出結果為 15.77

第二種,當作字串,使用正則匹配:

Number(15.7784514000.toString().match(/^\d+(?:\.\d{0,2})?/))   // 輸出結果為 15.77,不能用於整數如 10 必須寫為10.0000

  match() 方法可在字串內檢索指定的值,或找到一個或多個Regex的匹配。

  該方法類似 indexOf() 和 lastIndexOf(),但是它返回指定的值,而不是字串的位置。

 

注意:如果是負數,請先轉換為正數再計算,最後轉回負數

JavaScript 保留兩位小數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.