鼠标移入这句话就把颜色变成红色,好简单 我不会。
<a href="#">哈尔你医科大学附属第二医院</a>

解决方案 »

  1.   

    当然是放在前台<td><a href="#">哈尔你医科大学附属第二医院</a></td>
      

  2.   

    这个用css就可以做,想什么颜色都行
      

  3.   

    a:link   {   text-decoration:   none;color:   blue}   
    a:active   {   text-decoration:blink}   
    a:hover   {   text-decoration:underline;color:   red}   
    a:visited   {   text-decoration:   none;color:   green}   
      

  4.   

    <tr onmousemove=\"this.style.backgroundColor='#EEE'\" onmouseout=\"this.style.backgroundColor='#fff'\"><td>......</td>]</tr>
      

  5.   

    我知道用CSS做,我就是来问这个的,我不知道怎么做。
      

  6.   

    onmouseover 
    onmouseout
      

  7.   

    css当然可以,
    用js也可以,如:
    <a href="#"  onmouseover="this.style.color='#ff0000'" onmouseout="this.style.color='#0000ff'">哈尔你医科大学附属第二医院</a>