repeater鼠标悬停变色

下面是转别人的,无所谓,其实用Jquery的hover方法就可以了,
用不了这么麻烦,只是自己懒,不想写了,直接copy别人的算了
=========================================================
HTML code
  
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->

//repeater鼠标悬停变色
var se;
function myrepeaterse(id)
{
se= id.style.backgroundColor;
id.style.backgroundColor='#FFFFCC';
}
function myrepeaterses(id)
{
id.style.backgroundColor=se;
}

< tr style ="background-color:#EBEBEB" onmouseover ="myrepeaterse(this)" onmouseout ="myr

你可能感兴趣的:(鼠标)