attribute
程序员文章站
2022-07-14 13:03:06
...
设置元素属性
元素.setAttribute(‘属性名’,属性值)
var span = document.querySelector('span');
span.setAttribute('index', 1);
移除元素属性
元素.removeAttriibute(‘属性名’)
var span = document.querySelector('span');
span.removeAttribute('index');
获取元素属性
元素:getAttribute(‘属性名’)
var span = document.querySelector('span');
span.getAttribute('index');
attribute特点
1可以获取行内标准属性
2可以获取行内自定义属性
3无法获取行内属性
4无法获取点语法动态添加的属性
推荐阅读
-
JavaScript中的 attribute 和 jQuery中的 attr 方法浅析
-
python编程排除163邮箱发送邮件报错(AttributeError: ‘tuple‘ object has no attribute ‘encode‘)
-
JS Attribute属性操作详解
-
c#自定义Attribute获取接口实现示例代码
-
jQuery中[attribute*=value]选择器用法实例教程
-
jQuery中[attribute]选择器用法实例教程
-
jQuery中[attribute^=value]选择器用法实例教程
-
jQuery中[attribute=value]选择器用法实例教程
-
jQuery中[attribute!=value]选择器用法实例教程
-
module ‘seaborn‘ has no attribute ‘scatterplot‘解决方案