querySelector 方法
- 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;