无法使用模态在搜索 select2 中输入任何文本

问题描述 投票:0回答:1

当我尝试从 Select2 搜索下拉列表时,我无法在其中输入任何文本。

这是我的html:

<div class="mb-3 custom-select2" id="branch_field">
   <label class="form-label" style="color: #8B8B8B; font-size: 12px;">Cabang / POS</label>
   <select class="form-select disabled required" data-width="100%" id="branch" name="branch" style="font-size: 14px;">
      <option></option>
      <?php
         if (count($branch) > 0) {
            foreach ($branch as $val) {
                echo '<option value="' . $val->BranchID . '">' . $val->BranchFullName . '</option>';
            }
         }
         ?>
   </select>
   <div class='notif_info'><span class="text-danger"><i class="material-icons fs-6 m-1 text-danger">warning</i>Cabang / POS tidak boleh kosong</span></div>
</div>

我尝试放置 dropdownParent 但仍然不起作用:

$('#branch').select2({
    dropdownParent: $("#mappingModal"), 
    placeholder: "Pilih Cabang / POS"
});
javascript php jquery select jquery-select2
1个回答
0
投票

Hapus itu bg tabindex="-1"

© www.soinside.com 2019 - 2024. All rights reserved.