<style type="text/css">
A:link    {  text-decoration: none; color: blue}
A:visited {  text-decoration: none; color: blue}
A:hover   {  text-decoration: none; color: red}</style>
<a  href="javascript:void(window.open('url'))">aaa</a>

解决方案 »

  1.   

    <a href="javascript:void(window.open('1.htm','','width=100,height=100'))" style="text-decoration:none">aaa</a>
      

  2.   

    aaa没下划线的是CSS样式表效果,参考
    a:link {  color: #000000; text-decoration: none}
    a:visited {  color: #000000; text-decoration: none}
    a:active {  color: #FF0000; text-decoration: none}
    a:hover {  color: #FF0000; text-decoration: none}另一个问题:
    <script language=javascript>
    function select(id)
    {
    window.open('add.php?id='+id,'select','scrollbars=yes,width=400,height=250');
    }
    </script>
    <a href="javascript:select(1)">aaa</a>
      

  3.   

    <div onclick="window.open('http://localhost');" style="cursor:hand;">aaa</div>