Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

 

廃止

概要

現在実行している関数を呼び出した関数を示します。

arguments のプロパティ
実装されたバージョン: JavaScript 1.1, NES 2.0

JavaScript 1.3: 非推奨とする。JavaScript ??: Removed

説明

arguments.caller はもはや使用されていません。 代わりに関数オブジェクトの非標準の caller プロパティが使えます。詳細はその説明を参照してください。

arguments.caller プロパティは関数本体の中でのみ利用可能です。

次のコードは、関数の中で arguments.caller の値をチェックします。

function myFunc() {
   if (arguments.caller == null) {
      return ("The function was called from the top!");
   } else
      return ("This function's caller was " + arguments.caller);
}

 

 

ドキュメントのタグと貢献者

 このページの貢献者: teoli, ethertank, Potappo, Mgjbot, Nanto vi
 最終更新者: teoli,