|
那一部分代码如下
function changeto(){ source=event.srcElement if (source.tagName=="TR"||source.tagName=="TABLE") return while(source.tagName!="TD") source=source.parentElement if (source.style.backgroundColor!="#f8fafc"&&source.id!="ignore") source.style.backgroundColor="#ebf5fb" } function changeback(){ if (event.fromElement.contains(event.toElement)||source.contains(event.toElement)
||source.id=="ignore") return if (event.toElement!=source) source.style.backgroundColor="#ffffff" }
好象后面已经是source.style.backgroundColor="#ffffff"
|