gpt4 book ai didi

javascript - 如何在模态 Bootstrap 中单击行表?

转载 作者:行者123 更新时间:2023-11-28 13:24:29 25 4
gpt4 key购买 nike

我在表中绑定(bind)了数据并在模式 Bootstrap 中显示它们。我想使用单击或双击获取行表的数据,但它不起作用 enter image description here

   <div class="modal-body">
<table id="table_search" class="table table-hover">
<thead>
<tr>
<td>CCA</td>
<td>Name</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>

我使用jquery如下

 $('#table_search > tbody > tr').click(function () {
alert( $(this).val());
});

$('#table_search > tbody > tr').dblclick(function () {
alert($(this).val());
});

但是它不起作用。

最佳答案

我认为您应该在此处使用事件委托(delegate)或附加事件当显示模态时。另外 tr 没有您想要的文本值

$(document).on('click dblclick', '#table_search > tbody > tr', function (e) {
alert($(this).text());
});

关于javascript - 如何在模态 Bootstrap 中单击行表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30218966/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com