js中的鼠标事件

来源:9-22 编程练习

暮女神

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'" 有这样的写法吗?

写回答 关注

1回答

  • 慕先生7899162
    2017-01-02 10:23:31

    首先onmouseover这个鼠标划过事件是有的,但是,这个时间触发之后是调用某个函数,你要把后面的功能写进函数中去实现,然后,onmouseovre去调用这个函数,其它的部分我没看。

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题