为了账号安全,请及时绑定邮箱和手机立即绑定

为什么此js函数里只能用this才能实现?

为什么此js函数里只能用this才能实现?

炎炎设计 2018-08-07 13:13:20
function highlightRows() {    if(!document.getElementsByTagName) return false;    var tables = document.getElementsByTagName("table");    for(var i=0;i<tables.length;i++){        var rows = tables[i].getElementsByTagName("tr");        for(var j =0;j<rows.length;j++){            rows[j].onmouseover=function(){                //rows[j].style.fontWeight="bold"; //这样无效                this.style.fontWeight="bold";            }            rows[j].onmouseout=function() {                //rows[j].style.fontWeight="normal"; //这样无效                this.style.fontWeight="normal";            }        }    }}为什么注释的那两行不行,非要用this呢,这里this不是应该就是指代rows[j]么?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 552 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信