JS Function.caller 和 arguments.callee学习
文章参考http://www.jb51.net/article/25561.htm 先看两个小例子,让您有个大概印象function myfunc() { if (myfunc.caller) { alert(myfunc.caller); //alert(myfunc.caller.toString()); } else { alert("函数直接执行");