getElementsByName()方法
返回带有指定名称的节点对象的集合。
#改变内容
var element=document.getElementById("header");
element.innerHTML="New Header";
#改变属性
document.getElementById("image").src="landscape.jpg";
#事件
http://www.w3school.com.cn/tags/html_ref_eventattributes.asp
#所有选择器
http://www.w3school.com.cn/cssref/css_selectors.asp
selector : pseudo-class {property: value}
a:link {color: #FF0000} /* 未访问的链接 */
a:visited {color: #00FF00} /* 已访问的链接 */
a:hover {color: #FF00FF} /* 当有鼠标悬停在链接上 */
a:active {color: #0000FF} /* 被选择的链接 */
selector.class : pseudo-class {property: value}
a.red : visited {color: #FF0000}
<a class="red" href="css_syntax.asp">CSS Syntax</a>