获取dom方法封装

  • Post author:
  • Post category:其他


在这里插入图片描述



querySelector() 方法返回文档中匹配指定 CSS 选择器的一个元素

// 获取dom方法封装
getDomItem(type, name) {
  return document.querySelector(`[${type}="${name}"]`);
}
// 上图获取dom可以写为
this.getDomItem("class", "example").style.backgroundColor = "yellow";
this.getDomItem("id", "example").style.backgroundColor = "yellow";



版权声明:本文为dlf_123456原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。