没有找到怎么用css在<a>里面inline地定义hover,只好用js。
另 <a href="#"> 是跑到网页顶端了,而不是啥都不干;要用href="javascript:void(0)"。
<a href="javascript:void(0)" style="color:blue;text-decoration: none;" onmouseover="this.style.textDecoration = 'underline'" onmouseout="this.style.textDecoration = 'none'">link text</a>
另 <a href="#"> 是跑到网页顶端了,而不是啥都不干;要用href="javascript:void(0)"。