[求助]如何建立鼠标的onmouseover事件
各位大哥小弟不知道在JS里如何判断鼠标的 onMouseOver事件为真?
帮帮小弟
万分感激
二楼已经解释的很清楚了.getElementById("id").Attributes.Add("onmouseover","javascript:return function()");
或是用css:
比如:
td
{
/*设置onmouseover事件*/
onmouseover: expression(onmouseover=function (){this.style.borderColor ='blue';this.style.color='red';this.style.backgroundColor ='yellow'});