onmouseover和onMouseOut又有问题?
var tablecon = document.all.tableid.tBodies.tbodyid;
var cell = tablecon.rows[1].cells[1];
cell.onmouseover=function(){ this.className="today"; }
这个可以运行
cell.onmouseout=function(){ this.className="today"; }
这个不运行?
cell.onmouseover=test();
function test(){this.className="today"; }
这样就不行了?