Chrome 控制台中的 jQuery (8.0.552.237)
jQuery 选择器似乎无法在 Chrome 控制台中运行。任何类型的选择器都会返回“null”。但是,这些脚本确实可以正确运行 javascript。
有其他人注意到此更改或知道修复方法吗?
谢谢。
It appears that jQuery selectors are not functioning in the Chrome Console. Any type of selector returns "null". The scripts do properly run the javascript, however.
Has anyone else noticed this change or know of a fix.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在我自己的问题中发现了这个问题的原因。
控制台为
document.getElementById()
注入自己的函数(只是简写),别名为$
,它遮蔽了 jQuery 的$
。检查这一点的简单方法:当您处于断点并且 jQuery 似乎已损坏时,请在控制台中比较以下内容:jQuery
$
window.$
第一个和最后一个将是 jQuery 本身,本地
$
类似于:这是因为从控制台运行的代码被包装在
with
语句中:并且
window._commandLineApi.$
是隐藏 jQuery 的函数。在 Chromium 中发现了以下错误:http: //code.google.com/p/chromium/issues/detail?id=70969
I uncovered the cause of this in my own question.
The console injects its own function (just a shorthand) for
document.getElementById()
, aliased to$
, which shadows jQuery's$
. Easy way to check this: when you're at a breakpoint, and jQuery seems to be broken, compare the following in the console:jQuery
$
window.$
The first and last will be jQuery proper, the local
$
is something like:This is because code run from the console is wrapped in a
with
statement:and
window._commandLineApi.$
is the function that shadows jQuery.Found the bug in Chromium for this: http://code.google.com/p/chromium/issues/detail?id=70969
只需在控制台上运行以下命令即可使其工作:
Just run the following command on the console to make it work: