赞
踩
提取js中函数的内容。所以需要将函数名转成字符串。
函数名.toString()
var a=function(){console.log(123)} a.toString();
输出:
"function(){console.log(123)}"