getAttribute()方法

getAttribute()方法

通过元素节点的属性名称获取属性的值。

语法:

elementNode.getAttribute(name)

说明:

1. elementNode:使用getElementById()、getElementsByTagName()等方法,获取到的元素节点。

2. name:要想查询的元素节点的属性名字

看看下面的代码,获取h1标签的属性值:

getAttribute()方法_第1张图片

运行结果:

h1标签的ID :alink
h1标签的title :getAttribute()获取标签的属值

 

任务

试一试,使用getAttribute()方法,完成下面的任务:

在第20行补充代码,使用getAttribute()方法,获取LI标签的title值。

 





getAttribute()


课程列表



  • HTML

  • CSS

  • JavaScript

  • Jquery

  • Html5


以下为获取的不为空的li标签title值:




转载于:https://www.cnblogs.com/codepen2010/p/6904050.html

你可能感兴趣的:(getAttribute()方法)