在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中文網其他相關文章!