querySelector 方法

Element? querySelector(
  1. String selectors
)
override

查找此元素第一个匹配指定选择器的后代元素。

selectors 应该是一个使用 CSS 选择器语法的字符串。

// Gets the first descendant with the class 'classname'
var element = element.querySelector('.className');
// Gets the element with id 'id'
var element = element.querySelector('#id');
// Gets the first descendant [ImageElement]
var img = element.querySelector('img');

有关 CSS 选择器语法的详细信息,请参阅 CSS 选择器规范

实现

Element? querySelector(String selectors) native;