【Web前端问题】chrome中原生的$和$$是什么方法?

chrome中原生的$$$是什么方法?哪里可以查到文档?
$$返回的是Array
querySelectorAll返回的是NodeList
getElementsByXXX返回的是HTMLCollection
图片描述

回答:

这个快捷方法最开始是来自于Firebug
http://getfirebug.com/wiki/in...

然后chrome的文档在这儿
https://developers.google.com...


手动更新一下

$(selector) returns the reference to the first DOM element with the specified CSS selector. This function is an alias for the document.querySelector() function.

clipboard.png

$$(selector) returns an array of elements that match the given CSS selector. This command is equivalent to calling document.querySelectorAll().

clipboard.png

$x(path) returns an array of DOM elements that match the given XPath expression.

clipboard.png

回答:

$ == document.getElementById 

$$ == document.querySelectorAll //$$如图

图1:
clipboard.png
图2:
clipboard.png
图3:
clipboard.png

回答:

$ document.querySelector
$$ document.querySelectorAll

回答:

$ => document.querySelector
$$ => document.querySelectorAll

window.$ = document.querySelector.bind(document)

window.$$ = document.querySelectorAll.bind(document)

回答:

Chrome Command Line API Reference 自备梯子
http://getfirebug.com/wiki/in... 免梯子

以上是 【Web前端问题】chrome中原生的$和$$是什么方法? 的全部内容, 来源链接: utcz.com/a/143621.html

回到顶部