function testcall(){ alert(this); } testcall.call('test', '') testcall(); // test call 把第一個參數當成this傳進去,之後的第二個參數是該function的參數...
請先 登入 以發表留言。