在django使用ajax页面中动态生成内容的table表,每一行没有id和name,如何实现鼠标移动到行上变色,离开恢复?
js:
function changecolor() //鼠标移动到行上改变背景色
{
var the_obj = event.srcElement;
if(the_obj.tagName.toLowerCase() == "td")
{
the_obj=the_obj.parentElement;
// 保存原始底色
the_obj.oBgc=the_obj.style.backgroundColor;
// 更换新底色
the_obj.style.backgroundColor='#7FFFAA';
}
}
function resumecolor() //鼠标离开行改变背景色
{
var the_obj = event.srcElement;
if(the_obj.tagName.toLowerCase() == "td")
{
the_obj=the_obj.parentElement;
// 更换底色为原始底色
the_obj.style.backgroundColor=the_obj.oBgc;
}
}
html:
<table bordercolor="#000000" id="searchresult_a" onmouseover="changecolor()" onmouseout="resumecolor()">
{# 中间为django 使用ajax查询动态生成的行#}
</table>
效果: