target="_blank"去掉,也有下划线啊。

解决方案 »

  1.   

    <a style="cursor:hand<===手指;text-decoration:underline<==底線">
      

  2.   

    用样式表
    <font onmouseover="style.cursor='hand';style.textDecoration='underline'" onmouseout="style.cursor='normal';style.textDecoration='none'" onclick="window.open('modifyuserinfo.asp','new','width=400,height=160')">修改个人信息</font>
      

  3.   

    <a href='#' onclick="window.open('modifyuserinfo.asp','new','width=400,height=160'); return false">修改个人信息</a>在 onclick 里加入一句 return false
      

  4.   

    <a href='#' onclick="window.open('modifyuserinfo.asp','new','width=400,height=160')">修改个人信息</a>
      

  5.   

    <a href='#' onclick="window.open('modifyuserinfo.asp','new','width=400,height=160')" onmouseover="style.cursor='hand';style.textDecoration='underline'" onmouseout="style.cursor='normal';style.textDecoration='none'" >修改个人信息</a>
      

  6.   

    <a href="javascript" onclick="window.open(.....)">xxx</a>