基础

arguments.callee
函数递归时,用来调用函数

window.onload = function () {

function funRead() {
console.log(arguments.callee);
}

funRead();

}
原文地址:https://www.cnblogs.com/WeWeZhang/p/5749096.html