0%

js获取和设置html任意属性的值

在实际的应用中,可能要用html标签的属性去保存一些信息,这就汲及对标签任意属性的设置值和读取值。

getAttribute:取得属性,setAttribute:设置属性。
比如

1
2
3
4
5
6
7
8
9
// <li id="mynote" note="真的很折腾">zhetenga</li>
var mynote = document.getElementById("mynote");

alert(mynote.getAttribute("note"));

mynote.setAttribute("note", "真的折腾啊")

alert(mynote.getAttribute("note"));

如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!