摘要:
:hidden匹配所有的不可见元素,input 元素的 type 属性为 "hidden" 的话也会被匹配到Matches all elements that are hidden, or input elements of type "hidden".返回值Array<Element>示例查找所有不可见的 tr 元素 HTML 代码:<table> <tr styl... 阅读全文
摘要:
:first匹配找到的第一个元素Matches the first selected element.返回值Element示例查找表格的第一行 HTML 代码:<table> <tr><td>Header 1</td></tr> <tr><td>Value 1</td></tr> <t... 阅读全文
摘要:
#id根据给定的ID匹配一个元素。Matches a single element with the given id attribute.返回值Element参数id (String) : 用于搜索的,通过元素的 id 属性中给定的值示例查找 ID 为"myDiv"的元素。 HTML 代码:<div id="notMe"><p>id="notMe"</p>&l... 阅读全文