请问这里的this代表什么

function highlightRows(){

if(!document.getElementsByTagName)return false;

var rows=document.getElementsByTagName("tr");

for(var i=0;i<rows.length;i++){

rows[i].onmouseover=function(){

this.style.fontWeight="bold";

}

rows[i].onmouseout=function(){

this.style.fontWeight="normal"

}

}

}


我要去幼儿园深造了
浏览 1402回答 4
4回答

Ioukan

相当于rows[i]

一杯2块的奶茶

你鼠标划过的那个tr

qq_大寒_2

当前对象rows。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript