用空格可以做
<a href="url" >&nbsp;</a>

解决方案 »

  1.   

    恩,空格可以做,但是空格也只占字符大小的位置,用户可能要在你表格里多次移动鼠标才能找到链接。其实也可以用层,display:block一下,甚至或者给个白图片,都可以,方法很多
      

  2.   

    谢谢楼上回复,你上面的代码做出来的是只能点了那个&nbsp后才有链接,我想的是在这个空白单元格中所有空间中都是链接.
      

  3.   

    <table width="300" border="1">
      <tr>
        <td width="100" height="100" onclick="window.location.href='http://community.csdn.net/Expert/topic/5777/5777518.xml?temp=.9194605'" style="cursor: hand;">self</td>
        <td width="100" height="100" onclick="window.open('http://community.csdn.net/Expert/topic/5777/5777518.xml?temp=.9194605');" style="cursor: hand;">newwindow</td>
        <td width="100" height="100" onclick="frm.location.href='http://community.csdn.net/Expert/topic/5777/5777518.xml?temp=.9194605';" style="cursor: hand;">other</td>
      </tr>
    </table>
    <iframe id="frm" name="frm" width="400" height="300"></iframe>
      

  4.   

    <a style="display:block;width:100%;height:100%" href="xxxxxxxxxx"></a>
      

  5.   

    这样也可以,<a href="aaaaa.jsp"><tr style="cursor:pointer"><td>&nbsp;</td><tr></a>