jsDOM学习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsDOM学习相关的知识,希望对你有一定的参考价值。

js选择DOM的几种方式

  • document.querySelector()

------这个方法就是获取DOM元素的选择器

**这个方法有多个查找的元素,通过‘,‘隔开,但是其不存在先后关系,找到在文档中第一个出现的要查找的元素后就停止了

document.querySelector("#dome");      //获取id为dome的元素
document.querySelector(".dome");      //获取属性class=”dome“的第一个元素
document.querySelector("p");          //获取文档中的第一个p标签
document.querySelector("p.dome");     //同理,获取class=‘dome‘的第一个p标签
document.querySelector("a[target]");  //选择第一个有target属性的a标签
  • document.getElementByTagNames().getAttribute()

------这个方法就是获取通过选择器选择的元素的属性,所以必须先选择元素

**getAttributeNote()方法同这个方法一样,但是返回结果为一个数组对象,适用于多个元素的属性获取

 

以上是关于jsDOM学习的主要内容,如果未能解决你的问题,请参考以下文章

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

Vue报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object 的解决方法(代码片段

detectron2报AttributeError: Attribute ‘evaluator_type‘ does not exist in the metadata of dataset(代码片段

报错“Field pet in XXX.HelloController required a bean of type ‘XXX.Pet‘ that could not be found.“(代码片段

精心收集的 48 个 JavaScript 代码片段,仅需 30 秒就可理解