Chrome开发者工具中的选择元素不起作用?

时间:2015-04-10 15:01:38

标签: javascript google-chrome-devtools

我正在使用Chrome DevTools控制台尝试选择此页面中的元素:http://www.ncbi.nlm.nih.gov/pubmed/?term=The+DIAMOND+(DHA+Intake+And+Measurement+Of+Neural+Development)+Study%3A+a+double-masked%2C+randomized+controlled+clinical+trial+of+the+maturation+of+infant+visual+acuity+as+a+function+of+the+dietary+level+of+docosahexaenoic+acid

但我发现我尝试选择的所有内容都返回null。例如,如果我在控制台中键入$('body'),则返回null:

enter image description here

为什么会这样?页面中肯定有一个<body>标记。

其他站点的控制台中的相同$('body')查询返回一个元素。

1 个答案:

答案 0 :(得分:1)

此网站会覆盖$功能。请改用jQuery

jQuery('body'); //Object { 0: <body>, context: HTMLDocument → pubmed, selector: "body", length: 1 }