关于getAttribute与setAttribute(节点属性)的用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于getAttribute与setAttribute(节点属性)的用法相关的知识,希望对你有一定的参考价值。
setAttribute() 方法增加一个指定名称和值的新属性,或者把一个现有的属性设定为指定的值。
语法:
elementNode.setAttribute(name,value)
说明:
1.name: 要设置的属性名。
2.value: 要设置的属性值。
getAttribute()方法通过元素节点的属性名称获取属性的值。
语法:
elementNode.getAttribute(name)
说明:
1. elementNode:使用getElementById()、getElementsByTagName()等方法,获取到的元素节点。
2. name:要想查询的元素节点的属性名字
以上是关于关于getAttribute与setAttribute(节点属性)的用法的主要内容,如果未能解决你的问题,请参考以下文章
关于__getattr__和__getattribute__的一些问题?