getAttribute和setAttribute获取和设置标准所有属性

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>index</title>
    <style>
        *{
            font-family: 微软雅黑;
        }
    </style>
</head>
<body>
    <h1 info='linux is very much!' id='hid' class='hcls'>linux is very much!</h1>
</body>
<script>
hidobj=document.getElementById('hid');

alert(hidobj.getAttribute('class'));

hidobj.setAttribute('info','php');
</script>
</html>

 

posted @ 2020-12-27 22:47  大熊童鞋  阅读(268)  评论(0编辑  收藏  举报