javascript對象之內建對象Math使用方法

來源:互聯網
上載者:User

一、Math.min()和Math.max(),分別返回參數中的最小和最大值
  例:
  alert(Math.min(1,2,3))  //輸出 "1"
  alert(Math.max(1,2,3))  //輸出 "3"

二、Math.abs(),返回參數的絕對值
  例:
  alert(Math.abs(-1))  //輸出 "1"

三、Math.random(),產生一個0到1的隨機數
  例:
  window.open("http://www.***.com/index.shtml?t="+Math.random)  //在url地址後面加上一個值為隨即數的參數,能保證頁面每次都從伺服器上重新拉取,而不是讀取緩衝。

四、Math.floor(),Math.round(),Math.ceil()
  Math.floor():把小數向下舍入成整數    例:alert(Math.floor(1.5))  //輸出"1"
  Math.round():把小數標準四捨五入成整數  例:alert(Math.round(1.5))  //輸出"2"
  Math.ceil():把小數向上舍入成整數  例:alert(Math.round(1.5))  //輸出"2"
  利用這三個函數,在涉及小數計算的時候就非常方便,比如設計如下函數來進行小數處理 複製代碼 代碼如下:  function test(num,flag,bit)  //參數分別是 要傳入的小數"num"   舍入標準(-1,向下;0,標準;1向上)"flag"  保留小數的位元"bit"
  {
    var n=Math.pow(10,bit);
    switch(flag)
    {
      case -1:return Math.floor(num*n)/n;break;
      case 0:return Math.round(num*n)/n;break;
      case 1:return Math.ceil(num*n)/n;
    }
  }

相關文章

聯繫我們

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