how to select data attribute in html code example
Example 1: css data attribute selector
[data-value] {
}
[data-value="foo"] {
}
[data-value*="foo"] {
}
[data-value~="foo"] {
}
[data-value^="foo"] {
}
[data-value|="foo"] {
}
[data-value$="foo"] {
}
Example 2: html javascript find data attribute
<button data-id="1" >Click</button>
<button data-id="2" >Click</button>
<button data-id="3" >Click</button>
const btns=document.querySelectorAll('button[data-id]');
[...btns].forEach(btn => console.log(btn.getAttribute('data-id')))