<script language="JavaScript">
/*
* 示範arguments的用法,如何擷取實參數和形數數
*/
function argTest(a,b,c,d){
var numargs = arguments.length; // 擷取被傳遞參數的數值。
var expargs = argTest.length; // 擷取期望參數的數值。
alert("實參數目為:"+numargs)
alert("形數數目為:"+expargs)
alert(arguments[0])
alert(argTest[0]) //undefined 沒有這種用法
}
//argTest(1,2)
//argTest(1,2,3,4,5)
/*
* arguments不是數組(Array類)
*/
Array.prototype.selfvalue = 1;
function testAguments(){
alert("arguments.selfvalue="+arguments.selfvalue);
}
//alert("Array.sefvalue="+new Array().selfvalue);
//testAguments();
/*
* 示範函數的caller屬性.
* 說明:(當前函數).caller:返回一個對函數的引用,該函數調用了當前函數
*/
function callerDemo() {
if (callerDemo.caller) {
var a= callerDemo.caller.arguments[0];
alert(a);
} else {
alert("this is a top function");
}
}
function handleCaller() {
callerDemo();
}
//callerDemo();
//handleCaller("參數1","參數2");
/*
* 示範函數的callee屬性.
* 說明:arguments.callee:初始值就是正被執行的 Function 對象,用於匿名函數
*/
function calleeDemo() {
alert(arguments.callee);
}
//calleeDemo();
//(function(arg0,arg1){alert("形數數目為:"+arguments.callee.length)})();
/*
* 示範apply,call函數的用法
* 說明:作用都是將函數綁定到另外一個對象上去運行,兩者僅在定義參數方式有所區別:
* apply(thisArg,argArray);
* call(thisArg[,arg1,arg2…] ]);
* 即所有函數內部的this指標都會被賦值為thisArg
*/
function ObjectA(){
alert("執行ObjectA()");
alert(arguments[0]);
this.hit=function(msg){alert(msg)}
this.info="我來自ObjectA"
}
function ObjectB(){
alert("執行ObjectB()");
//調用ObjectA()方法,同時ObjectA建構函式中的所有this就會被ObjectB中的this替代
ObjectA.apply(this,arguments);//ObjectA.call(this);
alert(this.info);
}
//ObjectB('參數0');
var value="global 變數";
function Obj(){
this.value="對象!";
}
function Fun1(){
alert(this.value);
}
//Fun1();
//Fun1.apply(window);
//Fun1.apply(new Obj());
</script>