BEMOVE
2015-11-03 16:57
window.onload = function(){
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var tr=document.getElementsByTagName("tr")
for(var i=0;i<tr.length;i++){
bgcChange(tr[i]);
}
}
function bgcChange(obj){
obj.onmouseover="change(obj)";
}
function change(obj1){
obj1.style.backgroundColor="red";
}
for(var i=0;i<tr.length;i++){ tr[i].onmouseover=function(){ this.style.backgroundColor="red"; } }
你不行因为是你的tr这个dom在change()没有拿到,就是说你传的obj1在change()这不是你要的tr这个dom.
但是利用我那种方法怎么做能把参数传过去呢?我只是试试不同的方法
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题