02 |
<script language="JavaScript"> |
04 |
* 演示arguments的用法,如何獲取實參數和形數數 |
06 |
function argTest(a,b,c,d){ |
07 |
var numargs = arguments.length; // 獲取被傳遞參數的數值。 |
08 |
var expargs = argTest.length; // 獲取期望參數的數值。 |
09 |
alert("實參數目為:"+numargs) |
10 |
alert("形數數目為:"+expargs) |
13 |
alert(argTest[0]) //undefined 沒有這種用法 |
19 |
* arguments不是數組(Array類) |
22 |
Array.prototype.selfvalue = 1; |
23 |
function testAguments(){ |
24 |
alert("arguments.selfvalue="+arguments.selfvalue); |
26 |
//alert("Array.sefvalue="+new Array().selfvalue); |
31 |
* 說明:(當前函數).caller:返回一個對函數的引用,該函數調用了當前函數 |
34 |
function callerDemo() { |
35 |
if (callerDemo.caller) { |
36 |
var a= callerDemo.caller.arguments[0]; |
39 |
alert("this is a top function"); |
42 |
function handleCaller() { |
47 |
//handleCaller(" 參數1","參數2"); |
51 |
* 說明:arguments.callee:初始值就是正被執行的 Function 對象,用于匿名函數 |
53 |
function calleeDemo() { |
54 |
alert(arguments.callee); |
57 |
//(function(arg0,arg1) {alert("形數數目為:"+arguments.callee.length)})(); |
61 |
* 說明:作用都是將函數綁定到另外一個對象上去運行,兩者僅在定義參數方式有所區別: |
62 |
* apply(thisArg,argArray); |
63 |
* call(thisArg[,arg1,arg2…] ]); |
64 |
* 即所有函數內部的this指針都會被賦值為thisArg |
70 |
this.hit=function(msg){alert(msg)} |
71 |
this.info="我來自ObjectA" |
76 |
//調用ObjectA()方法,同時ObjectA構造函數中的所有this就會被 ObjectB中的this替代 |
77 |
ObjectA.apply(this,arguments);//ObjectA.call(this); |
82 |
var value="global 變量"; |
91 |
//Fun1.apply(new Obj()); |
該文章在 2010/8/13 23:03:10 編輯過