gpt4 book ai didi

javascript - 下拉列表在 jquery 数据表移动 View 中不起作用

转载 作者:行者123 更新时间:2023-11-30 06:19:23 26 4
gpt4 key购买 nike

去 fiddle https://jsfiddle.net/rizwanali98601/ngofhc24/12/在下表中,jquery 数据表中有下拉列表。

单击按钮时,我在下拉列表中添加选项。但在移动 View 中选项未添加到下拉列表中。

 <p>Click on Add option  button to add options in dropdown</p>
<button type="button" id="btn1">
Add option

</button>
<br/>

<table class="table table-striped table-hover" id="myTable">
<thead>
<tr>
<th>Indent No.</th>
<th>Warehouse</th>
<th>Item</th>
<th>Make/Catno</th>
<th>UOM</th>
<th>Qty</th>
<th>Qty P</th>
<th>Sh Cl</th>
<th>Date</th>
<th>SortDate</th>
<th>Rqt Dt</th>
<th>Dropdown</th>
</tr>
</thead>
<tbody>
<tr>
<td>INDMSF/16-17/00003</td>

<td>Furnace</td>
<td>Bearing 22317 EW33J</td>
<td></td>
<td>no</td>
<td>2.0</td>
<td>2.0</td>
<td></td>
<td>31/08/16</td>
<td>08/31/16</td>
<td>31/08/16</td>
<td><select id="ddlTest" style="width: 300px"></select></td>
</tr>
</tbody>
</table>

最佳答案

尝试使用 .on()

所以改变...

$("#btn1").click(function(){
var ddl = $('#ddlTest');
ddl.append($("<option></option>").val('0').html('Selectvalue'));
});

为此...

$("#btn1").on('click', function() {
var ddl = $('#ddlTest');
ddl.append($("<option></option>").val('0').html('Selectvalue'));
});

关于javascript - 下拉列表在 jquery 数据表移动 View 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54097531/

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