【发布时间】:2019-03-16 18:50:15
【问题描述】:
我有一个长表,不同的条目相互关联,所以我将它们链接成这样:
<tr>
<th>Thing </th>
<th>related to Thing </th>
</tr>
<tr>
<td><a name = "t1"/>Thing 1</td>
<td><a href = "#t2">Thing2 is related </a></td>
</tr>
<tr>
<td><a name = "t2"/>Thing2</td>
<td><a href = "#t1">Thing1 is related </a></td>
</tr>
现在,我希望当我单击“Thing2 相关”时,我会跳下页面(这很有效),但我希望该行很快亮起以指出哪一行是指的。 有什么办法吗?
【问题讨论】:
标签: html html-table row highlight