onmouseover 当鼠标移到这个对象之上时响应
onmouseout 当鼠标移出这个对象之上时响应
document.getElementById('id') 获取id的元素并可以做一些操作
onclick 点击事件
alert 弹出框
如
var onVar1 = document.getElementById('div1'); //取得id为div1 的元素,并对其赋值 onVar1.style.height = '100px'; onVar1.style.width = '100px'; onVar1.style.background = 'red';
转载于:https://www.cnblogs.com/Stone-Yuan/p/6187911.html