在 Style 中添加:
a {text-decoration:none}
a:hover {text-decoration:underline}如(源文件):
<Html><Head>
<Title>Test</Title>
<Style>
a {text-decoration:none}
a:hover {text-decoration:underline}
</Style>
</Head><Body>
<A Href="index.htm">Test</A>
</Body></Html>

解决方案 »

  1.   

    CSS,随便去哪个网站,找找页面文件源码,看看CSS文件就明白啦,主要是下面。
    a:hover      { color: #FF6600; text-decoration: underline }
    a:visited    { color: #0033CC; text-decoration: none }
    a:link      { color: #FF6600; text-decoration: none }
    ...
      

  2.   

    好象用OnMouseMove和OnMouseOut事件吧
      

  3.   

    同意楼上tomPeakz(张子)和zyl910(910:分儿,我来了!)