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

来源:9-22 编程练习

cc_0501

2015-10-14 19:39

请问一下源代码里面的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回答

  • JhinDeng
    2015-10-21 13:34:53

    表示当前function作用的对象。

  • 冥oo冥
    2015-10-14 21:24:45

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

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题