Chrome 控制台中的 jQuery (8.0.552.237)

发布于 2024-10-14 08:58:37 字数 123 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

征﹌骨岁月お 2024-10-21 08:58:37

我在我自己的问题中发现了这个问题的原因。

控制台为 document.getElementById() 注入自己的函数(只是简写),别名为 $它遮蔽了 jQuery 的 $ 。检查这一点的简单方法:当您处于断点并且 jQuery 似乎已损坏时,请在控制台中比较以下内容:

  • jQuery
  • $
  • window.$

第一个和最后一个将是 jQuery 本身,本地 $ 类似于:

function () {
    return document.getElementById.apply(document, arguments)
}

这是因为从控制台运行的代码被包装在 with 语句中:

with (window ? window.console._commandLineApi : {}) {
with (window) {
    // the actual code you typed in here
}   
}

并且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:

function () {
    return document.getElementById.apply(document, arguments)
}

This is because code run from the console is wrapped in a with statement:

with (window ? window.console._commandLineApi : {}) {
with (window) {
    // the actual code you typed in here
}   
}

and window._commandLineApi.$ is the function that shadows jQuery.

stupid chrome


Found the bug in Chromium for this: http://code.google.com/p/chromium/issues/detail?id=70969

九公里浅绿 2024-10-21 08:58:37

只需在控制台上运行以下命令即可使其工作:

$ = jQuery

Just run the following command on the console to make it work:

$ = jQuery
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文