首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

table 中关于td 的超链接,该如何处理

2012-05-24 
table 中关于td 的超链接tabletrtdaimg/a/tdtda href一个名字/a/td/tr/table

table 中关于td 的超链接
<table>
<tr>
<td><a><img></a></td>
<td><a href="">一个名字</a></td>
</tr>
</table>

现在的是第二列只有点击文字才会跳转的。
但是名字不会占满整个列,我需要点击第二列任何空白处都能跳转。
怎么实现?

[解决办法]

HTML code
<td onclick="window.location.href='url';"><a href="">一个名字</a></td>
[解决办法]
HTML code
<!DOCTYPE HTML><html>    <head>        <meta charset="gb2312" />        <title></title>            <style>            td {                border:1px solid red;                font-size:12px;            }            .test a{                display:inline-block;                width:100%; height:100%;            }        </style>            </head>    <body>        <table>            <tr>                <td><a><img></a></td>                <td class="test" width="100" height="30"><a href="">一个名字</a></td>            </tr>        </table>    </body></html> 

热点排行