如果我有下面的代碼,我會添加什麼來使行可點擊作爲鏈接? (溫柔我是新來這個)我已經嘗試了幾件事情,但我很新,所以我很努力得到它的權利:如何使整行的表格在css中可點擊?
.hoverTable {
width: 700px;
border-collapse: collapse;
}
.hoverTable td {
padding: 7px;
border: #315795 1px solid;
font-family: "tradegothic";
font-size: 14px;
color: #315795;
}
/* Define the default color for all the table rows */
.hoverTable tr {
background: #bec7d6;
}
/* Define the hover highlight color for the table row */
.hoverTable tr:hover {
background-color: #315795;
color: #ffffff;
}
/* Define the hover highlight color for the table row */
.hoverTable td:hover {
background-color: #315795;
color: #ffffff;
}
<table class="hoverTable" style="width: 700px;">
<tbody>
<tr class="clickable-row" data-href="mathdept.ucr.edu">
<td colspan="3"><strong><a>CENTER FOR MATHEMATICAL & COMPUTATIONAL MODELING IN BIOLOGY & MEDICINE<span style="float: right;">►►</span></a><br /></strong></td>
</tr>
<tr>
<td colspan="3"><strong>OUR PEOPLE - COMMITTEES <span style="float: right;">►►</span></strong></td>
</tr>
<tr>
<td colspan="3"><strong>SEMINARS, COLLOQUIUM, CONFERENCES & RESEARCH <span style="float: right;">►►</span></strong></td>
</tr>
</tbody>
</table>
你說的 「點擊」 是什麼意思?你想讓用戶點擊一行並導致導航發生? – mrogers
我看到你有一個相對URL的行數據屬性。你需要使用Javascript/jQuery才能使它工作。 – WizardCoder