首頁  >  文章  >  web前端  >  完美解決BootStrap模態框和select2合用時input無法取得焦點問題

完美解決BootStrap模態框和select2合用時input無法取得焦點問題

巴扎黑
巴扎黑原創
2017-09-02 13:32:433051瀏覽

在bootstrap的模態框裡使用select2插件,會導致select2裡的input輸入框沒有辦法獲得焦點,沒有辦法輸入。怎麼解決這個問題呢?下面小編為大家帶來了BootStrap模態框和select2合用時input無法獲取焦點的解決方法,一起看看吧

在bootstrap的模態框裡使用select2插件,會導致select2裡的input輸入框沒有辦法獲得焦點,沒有辦法輸入.

解決方法:

把頁中的 # tabindex="- 1"  刪除(測試成功):


<p id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
 <p class="modal-header">
  <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  <h3 id="myModalLabel">Panel</h3>
 </p>
<p class="modal-body" style="max-height: 800px">
<p id="myModal" class="modal hide fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
 <p class="modal-header">
  <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  <h3 id="myModalLabel">Panel</h3>
 </p>
<p class="modal-body" style="max-height: 800px">

可以在onshown方法裡面做處理,主要原理就是因為bootstrap的tabindex='-1 ',佔用了select2的tabindex='0',腳本做處理模態框顯示出來後,將模態框的tabindex屬性刪掉


BootstrapDialog.show({
   onshown: function (dialogRef) {
    $("#"+dialogRef.getId()).removeAttr("tabindex");
  }
})

重寫enforceFocus方法(測試發現沒有效果):


$.fn.modal.Constructor.prototype.enforceFocus = function() {};

以上是完美解決BootStrap模態框和select2合用時input無法取得焦點問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn