[新着] Webテンプレートを仮オープンしました
function hilight(a) {
var idx = a.parentNode.parentNode.rowIndex;
var table = document.getElementById('datatable');
for (var i = table.rows.length; i--; ) {
if (i == idx) {
table.rows[i].style.backgroundColor = '#ff6';
} else {
table.rows[i].style.backgroundColor = 'transparent';
}
}
}<table id="datatable">
<!-- thead... -->
<tbody>
<tr><td><a href="item1.html" target="bottomframe" onclick="hilight(this)">1</a></td><td>...</td></tr>
<tr><td><a href="item2.html" target="bottomframe" onclick="hilight(this)">2</a></td><td>...</td></tr>
</tbody>
</table>