1

有没有办法找出创建 javascript 对象或定义变量的位置(在哪个函数或哪个文件中)?

我正在一个网站上创建一个变量 foo,当我添加一个 id 为 foo 的 div 时,它可以在 chrome 开发工具控制台中使用。但我不知道发生在哪里。它必须在其中一个插件中。

4

1 回答 1

3

The browser creates global vars for every html tag with an id or name, so if you have a <div id="foo" /> the browser will create a foo object that references the div, just as if you did var foo = document.getElementById('foo');

于 2013-10-22T14:34:59.597 回答