javascript學習筆記(七) js函數介紹

來源:互聯網
上載者:User

1.函數內部屬性 arguments
arguments用來儲存函數的參數,arguments.callee指向擁有arguments對象的函數 複製代碼 代碼如下://階乘
function factorial(num) {
if (num <= 1) {
return 1;
} else {
return num*arguments.callee(num-1); //用agreements.callee代替
}
}

var trueFactorial = factorial;
factorial = function {
return 0;
}
alert(trueFactorial(5)); //20
alert(factorial(5)); //0

2.函數的屬性和方法
length屬性,表示函數參數的個數

3. apply()和call()方法
apply()和call()方法的作用是傳遞參數或擴充函數的範圍 複製代碼 代碼如下://傳遞參數
function sum(num1,num2) {
return num1+num2;
}
function callSum(num1,num2) {
return sum.call(this,num1,num2); //第一個參數this,後面列舉所有參數
}
alert(callSum(10,10)); //20

function calSum1(num1,num2) {
return sum.apply(this,arguments); //第一個參數this,第二個參數arguments
}
function calSum2(num1,num2) {
return sum.apply(this,[num1,num2]); //第一個參數this,第二個參數是參數數組
}
alert(callSum1(10,10)); //20
alert(callSum2(10,10)); //20

複製代碼 代碼如下://改變函數範圍
window.color = "red";
var o = { color:"blue"};
function sayColor() {
alert(this.color);
}
sayColor(); //red
sayColor.call(this); //red
sayColor.call(window);//red
sayColor.call(o); //blue

相關文章

聯繫我們

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