gpt4 book ai didi

javascript - 如何找到点击了哪个按钮 : jquery

转载 作者:行者123 更新时间:2023-11-30 16:44:48 25 4
gpt4 key购买 nike

总结: 我有一个 html 页面,它包含两个添加按钮和两个表格。单击添加按钮时,行将附加到相应的表中。我已将两个具有两个不同父 ID 的模板包含到一个 html 模板中。我需要以这样的方式编写脚本,即当单击具有 parentid == "#a"的 add-btn 时,将行附加到具有 parentid =="#a"的表中。

结果.html

//i am using django web framework
<div class="reports">
{% include 'template1.html' with id="a" %}
{% include 'template2.html' with id="b" %}
</div>

每个模板共享/扩展一个 base.html 模板,其中编写了所有通用代码

<div class="panel">
<div>
<button type="button" class="add btn btn-primary" data-toggle="tooltip" title="Add to configuration list.">
<i class="fa fa-plus"></i>
Add
</button>
</div>

<div class ="configuration-table panel-body">
<table class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th>Remove</th>
<th>Layer</th>
<th>Display</th>
<th>Unit</th>
<th>Dataset</th>
<th>Ordering</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>

我的 jquery 代码是

结果.js

    $('.reports').on('click','#a .add, #b .add', function(e) {
//how to differentiate two tables here.
$(this).find('configuration-table table').children('tbody')
.append(
'<tr>'+
'<td class="remove-row" role="button" aria-label="Remove Region"><i class="fa fa-times" title="Remove this row." data-toggle="tooltip" data-placement="right" aria-hidden="true"></i></td>'+
'<td>'+layer_text+'</td>'+
map_elements+
'<td>'+unit_text+'</td>'+
'<td>'+dataset_text+'</td>'+
'<td class="ordering" aria-label="Re-order"><i class="fa fa-arrows" title="Re-arrange row order." data-toggle="tooltip" data-placement="right"></i></td>'+
'</tr>'
);

问题:当我点击添加按钮时,该行会附加到两个表中。我不想要那个。我想将行添加到相应的表中。我想在相同的功能中做到这一点。

我正在寻找我在这里缺少的逻辑。

提前致谢

最佳答案

您的代码正在使用 find 查找按钮的子项。它不是子元素,它是按钮父元素 div 的兄弟元素。

$(this)  //button that was clicked
.parent() //div around the button
.sibling(".configuration-table") //sibling element that has the table
.find("table tbody") //the table
.append(tableRow);

关于javascript - 如何找到点击了哪个按钮 : jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31414003/

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