document.querySelector

这个api的功能很强大,针对选择符可以使用相关的正则进行处理, 这个先马,后面需要仔细研究下
【document.querySelector】举例

document.querySelector(`*[data-index='${id}'`][class*='xxx']) // 选中 data-index为id,类名包含xxx的元素document.querySelector(`*[data-index='${id}'][class^='more__ul__li']`) //选中data-index为id,类名以more__ul__li 开头的元素 document.querySelector(`*[component='${xxx}']`) 选中 component 为 xxx的元素

    推荐阅读