内联处理程序几乎肯定会引用全局变量,因此您可以打开控制台并记录该变量,这将为您提供函数位置及其代码:const foo = 'some code';function fn() { console.log('fn running');}// when you have the function name, console.dir it// to find its location:console.dir(fn);// console.log it to find its code:console.log(fn);您可以单击右侧的链接,[[FunctionLocation]]转到“源”面板中定义该函数的位置。