鼠标经过表格变换颜色,如何写成变换背景图片
<tablewidth="200"border="1"><tronmouseover="this.style.backgroundColor='#ccc';"onmous...
<table width="200" border="1">
<tr onmouseover="this.style.backgroundColor='#ccc';" onmouseout="this.style.backgroundColor='#fff';">
<td>表格内容</td>
<td>表格内容</td>
<td>表格内容</td>
</tr>
<tr onmouseover="this.style.backgroundColor='#ccc';" onmouseout="this.style.backgroundColor='#fff';">
<td>表格内容</td>
<td>表格内容</td>
<td>表格内容</td>
</tr>
<tr onmouseover="this.style.backgroundColor='#ccc';" onmouseout="this.style.backgroundColor='#fff';">
<td>表格内容</td>
<td>表格内容</td>
<td>表格内容</td>
</tr></table> 这个代码是鼠标经过表格改变颜色,。如何写成经过就改变背景图片 展开
<tr onmouseover="this.style.backgroundColor='#ccc';" onmouseout="this.style.backgroundColor='#fff';">
<td>表格内容</td>
<td>表格内容</td>
<td>表格内容</td>
</tr>
<tr onmouseover="this.style.backgroundColor='#ccc';" onmouseout="this.style.backgroundColor='#fff';">
<td>表格内容</td>
<td>表格内容</td>
<td>表格内容</td>
</tr>
<tr onmouseover="this.style.backgroundColor='#ccc';" onmouseout="this.style.backgroundColor='#fff';">
<td>表格内容</td>
<td>表格内容</td>
<td>表格内容</td>
</tr></table> 这个代码是鼠标经过表格改变颜色,。如何写成经过就改变背景图片 展开
3个回答
2013-12-18
展开全部
每个tr标签都要添加事件的话太麻烦了,用标准DOM吧:var tables = document.getElementsByTagName("table");for(var i=0; i<tables.length; i++){ //如果只有一个表格,则可省略此步骤 var curr_table = tables[i]; var rows = table[i].getElementsByTagName("tr"); for(var j=0; j<rows.length; j++){ rows[j].onmouseover = function() { this.bck = this.style.background; //缓存原来的背景(可以是在CSS中设置的图片) this.style.background = "url(..images/test.gif)"; } rows[j].onmouseover = function() { this.style.background = this.bck; //恢复原先的背景 } }}用jQuery的话会简便很多(同样的功能): $("tr").hover( //表格斑马纹
function(){
this.bck = "url(./images/toolbar.png) top left repeat-x";
$(this).css("background","url(./images/toolbar_hover.png) top left repeat-x");
},
function(){
$(this).css("background",this.bck);
}
);
function(){
this.bck = "url(./images/toolbar.png) top left repeat-x";
$(this).css("background","url(./images/toolbar_hover.png) top left repeat-x");
},
function(){
$(this).css("background",this.bck);
}
);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-12-18
展开全部
格式:object.style.backgroundImage="URL(图片地址)"例如:<tr onmouseover="this.style.backgroundImage='URL(1.jpg)';" onmouseout="this.style.backgroundImage='URL(2.jpg)';">
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-12-18
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |