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

9-22编程鼠标移动改变背景

请问一下源代码里面的this代表的是什么?
function Highlight(){
		var tbody = document.getElementById('table').lastChild;	
		trs = tbody.getElementsByTagName('tr');   
		for(var i =1;i<trs.length;i++){
			trs[i].onmouseover = function(){
				this.style.backgroundColor ="#f2f2f2";
			} 
			trs[i].onmouseout = function(){
				this.style.backgroundColor ="#fff";
			} 
		}  
	 }


正在回答

2 回答

表示当前function作用的对象。

0 回复 有任何疑惑可以回复我~

当前对象,一般代表html网页本身

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

9-22编程鼠标移动改变背景

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信