jquery – HTML表行链接

前端之家收集整理的这篇文章主要介绍了jquery – HTML表行链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使一行 HTML表格成为一个链接的最佳方法是什么?我目前正在使用 jquery对斑马条纹进行条纹化,还可以突出显示onmouSEOver / off选择的行,所以如果 JavaScript是答案,请使用jquery.

解决方法

我只是用css:
<style>
table.collection {width:500px;border-collapse:collapse;}
table.collection tr {background-color:#fff; border-bottom: 1px #99b solid;}
table.collection tr:hover {background-color:#ffe;}
table.collection td {display:table-cell;border-bottom: 1px #99b solid; padding:0px;}
table.collection td a {text-decoration:none; display:block; padding:0px; height:100%;}
</style>
<table class="collection">
<tr>
    <td><a href="#">Linky1</a></td>
    <td><a href="#">Data1</a></td>
</tr>
<tr>
    <td><a href="#">Linky2</a></td>
    <td><a href="#">Data2</a></td>
</tr>
</table>
原文链接:https://www.f2er.com/jquery/180081.html

猜你在找的jQuery相关文章