js中的鼠标事件
在JavaScript中有鼠标事件吗,比如在这节中,我写
window.onload=function(){
var tr=document.getElementsByTagName("tr");
tr.onmouseover="this.style.backgroundcolor='red'" //这样写对吗
}
如上tr.onmouseover="this.style.backgroundcolor='red'" 有这样的写法吗?
2017-01-01
举报