如何选择具有相同类名的按钮。
我在下拉菜单btn btn-link dropdown-toggle中有一个 class 的下拉菜单,我有一个带有 class 的按钮btn btn-link。我试图在下拉菜单中获取内部按钮,但它选择了 dropdoen 菜单本身。
<div class="dropdown overflow show">
<button class="btn btn-link dropdown-toggle" type="button" data-toggle="dropdown"
aria-expanded="true">Actions<span class="caret"></span></button>
<div class="dropdown-menu dropdown-menu-right show" s x-placement="bottom-end">
<div><button type="button" class="btn btn-link">Standard Letter</button></div>
<div></div>
</div>
</div>
我尝试使用以下 jQuery 代码获取内部 btn 类并触发以下 jQuery 但它选择了btn btn-link dropdown-toggle 而不是下拉项<button type="button" class="btn btn-link" onkeydown="setTypeStandardLetterChange()" onclick="setTypeStandardLetterChange()">Standard Letter</button>/div>
$(document).on("click", ".btn.btn-link", function (e) {
var grid = $("#BillingLettersGrid").data("kendoGrid"); grid.refresh();
var dataItem = grid.dataSource.getByUid($(this).closest("tr").data("uid"));
dataItem.FileName = "Standard Letter ";
})
达令说
慕妹3242003
临摹微笑
相关分类