暮女神
2017-01-01 13:11
在JavaScript中有鼠标事件吗,比如在这节中,我写
window.onload=function(){
var tr=document.getElementsByTagName("tr");
tr.onmouseover="this.style.backgroundcolor='red'" //这样写对吗
}
如上tr.onmouseover="this.style.backgroundcolor='red'" 有这样的写法吗?
首先onmouseover这个鼠标划过事件是有的,但是,这个时间触发之后是调用某个函数,你要把后面的功能写进函数中去实现,然后,onmouseovre去调用这个函数,其它的部分我没看。
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题