我有一张显示一些信息的表格。我想要完成的是允许用户点击一行,并将与该行中信息相关的注释显示在该行下面。
我正在尝试设置它以便我可以使用漂亮的CSS过渡功能,因此只需将注释放在信息行下方隐藏的,绝对定位的行中是不可能的。 CSS转换不会对position
样式起作用。
我已将其设置为使注释位于div
。当用户点击表格中的某一行时,onClick
事件会调出一个Javascript函数,使div
可见。现在我需要的是div在选定的表行下排列。
我怎样才能获得表格行的高度和位置?我想我可以用它来定位div
。或者,有更好的方法吗?
以下是我所得到的一个例子:
<style>
.emarNote{
transition: all .3s linear;
-o-transition: all .3s linear;
-moz-transition: all .3s linear;
-webkit-transition: all .3s linear;
}
</style>
<script type="text/javascript">
function showEmar(id)
{
if (document.getElementById("emarNote"+id).style.visibility == "hidden")
{
document.getElementById("emarNote"+id).style.visibility = 'visible';
document.getElementById("emarNote"+id).style.opacity = 1;
}
else
{
document.getElementById("emarNote"+id).style.opacity = 0;
document.getElementById("emarNote"+id).style.visibility = 'hidden';
}
}
</script>
<table>
<tr onClick="showEmar(1)">
<td>Info</td>
<td>Info</td>
</tr>
</table>
<div id="emar1" class="emarNote" style="visibility:hidden; opacity:0; position:absolute;">
note about info
</div>
答案 0 :(得分:0)
第一次下载JQuery。 然后执行以下操作:
<style>
.emarNote{ background:#CCCCCC; }
</style>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.emarNote').hide();
$('tbody', '#myTable').click(function(event) {
tr_ID = $(event.target).parent().attr('id');
$('#' + tr_ID + '-info').fadeToggle('slow');
});
});
</script>
<table id="myTable">
<tbody>
<tr id="row1">
<td>Info</td>
<td>Info</td>
</tr>
<tr>
<td colspan="2" id="row1-info" class="emarNote">MORE INFO would be really cool and such</td>
</tr>
</tbody>
</table>
注意:将“fadeToggle”替换为“slideToggle”以实现幻灯片效果。另外,我真的认为你应该阅读一下JQuery以充分理解解决方案。一旦掌握了基础知识,你会发现它实际上很容易理解。