修改html的内容
document.getElementById(id).innerHTML=new HTML
修改html的属性
document.getElementById(id).attribute(属性名)=new value(新属性)
修改html的格式
document.getElementById(id).style.property(属性格式)=new style(新属性)
dom的事件
- 鼠标点击事件 onclick
eg.<h1 onclick="this.innerHTML='谢谢!'">请点击该文本</h1> - 从事件处理器调用一个函数
eg.function changetext(id)
{
id.innerHTML="谢谢!";
}
<h1 onclick="changetext(this)">请点击该文本</h1>
事件
- onmouseover 和 onmouseout 事件
- onfocus事件
- onloud事件
- 鼠标事件
eg.<h1 onmouseover="style.color='red'" onmouseout="style.color='blue'">
请把鼠标移到这段文本上
</h1>
网友评论