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>
世界上最美的风景,是自己努力的模样