问答详情
源自:9-22 编程练习

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";
			} 
		}  
	 }


提问者:cc_0501 2015-10-14 19:39

个回答

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

    表示当前function作用的对象。

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

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