javascript學習筆記(八) js內建對象

來源:互聯網
上載者:User

1.URI方法

encodeURI()和encodeURIComponent()對URI進行編碼
encodeURI()不會對本身屬於URI的特殊字元進行編碼,如冒號,正斜杠,問好,井字等
encodeURIComponent()會對任何非標準字元進行編碼

2.eval() 方法:解釋參數中的代碼字串 複製代碼 代碼如下:var msg = "hello world";
eval("alert(msg)"); //"hello world"

3.Math 對象
Math.E 數學中的e的值
Math.PI π的值
Math.SQRT2 2的平方根
Math.abs(num) num的絕對值
Math.exp(num) e的num次冪
Math.log(num) num的自然對數
Math.pow(num,n) num的n次冪
Math.sqrt(num) num的平方根
Math.acos(x) x的反餘弦值
Math.asin(x) x的反正弦值
Math.atan(x) x的反正切值
Math.atan2(y,x) y/x的反正切值
Math.cos(x) x的餘弦值
Math.sin(x) x的正弦值
Math.tan(x) x的正切值

4.min()和max()方法 複製代碼 代碼如下:var max = Math.max(3,45,67,32);
alert(max); //67
var min = Math.min(2,46,74);
alert(min); //2

5.小數舍入到整數方法
Math.ceil() 向上舍入
Math.floor() 向下舍入
Math.round() 四捨五入 複製代碼 代碼如下:alert(Math.ceil(25.1)); //26
alert(Math.ceil(25.5)); //26
alert(Math.ceil(25.9)); //26

alert(Math.round(25.1)); //25
alert(Math.round(25.5)); //26
alert(Math.round(25.9)); //26

alert(Math.floor(25.1)); //25
alert(Math.floor(25.5)); //25
alert(Math.floor(25.9)); //25

6. random() 方法 返回 介於 0~1 的一個隨機數,不包括0和1
在某一範圍內取一個隨機數公式:
隨機數 = Math.floor(Math.random * 總數 + 第一個值) // 總數=第二個值 - 第一個值 複製代碼 代碼如下://取範圍內隨機數函數
function selectFrom(lowerValue,upperValue) {
var count = upperValue - lowerValue + 1;
return Math.floor(Math.random() * count +lowerValue);
}

var num = selectFrom(2,10);
alert(num); //介於2~10之間的數(包括2和10)

相關文章

聯繫我們

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