HTML:有没有办法制作可点击的<td> o <tr>标签?

zii*_*web 5 html hyperlink

有没有办法制作可点击的<td><tr>标签?

Lie*_*yan 5

<td><a href="foo">bar</a></td>
Run Code Online (Sandbox Code Playgroud)

  • @user,`td {padding:someValue; } td a {display:block; margin:-someValue; padding:someValue; 你可能还想在`td a`中添加`text-decoration:none`. (3认同)

小智 5

<td onclick="window.location = 'index.html';">cell content</td>
Run Code Online (Sandbox Code Playgroud)

index.html上面可以是任何URL或内部页面链接.注意:当您使用此javascript方法将鼠标悬停在单元格上时,鼠标指针不会变成指针,但单击该单元格会将您带到URL.

  • &lt;td onclick="window.location = 'index.html';" 风格='光标:手;光标:指针;'&gt;单元格内容&lt;/td&gt; (2认同)