标签:hello click document html mes 定义 ext asc dataset
在HTML标签中定义属性,需要时可以读取属性的值,这类属性称为数据属性
命名规则是data-<属性名称>
例如
<div id="message" data-text="hello,world" ></div>
<button onclick="read()">submit</button>
读取时通过元素的dataset.<属性名称>
访问,
function read(){
obj = document.getElementById('message');
console.log(obj.dataset.text);
}
这样触发函数就能读取data-text的值
标签:hello click document html mes 定义 ext asc dataset
原文地址:https://www.cnblogs.com/esrevinud/p/12109711.html