arguments.callee
|
|
The callee property contains the function that is currently executing. |
This is useful if the function has no name. |
<html> <form> <input type="button" value="A" OnClick=myFunction(this,"A")> <input type="button" value="B" OnClick=myFunction(this,"B")> <input type="button" value="C" OnClick=myFunction(this,"C")> <input type="button" value="D" OnClick=myFunction(this,"D")> <input type="button" value="E" OnClick=myFunction(this,"E")> </form> <script language="JavaScript"> <!-- function myFunction() { var aString = arguments[0].value; aString += "'s is "; aString += arguments[1]; alert(aString); alert(arguments.callee.toString()); } --> </script> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
|
|