您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“BootStrap模態框和select2合用時input無法獲取焦點怎么辦”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“BootStrap模態框和select2合用時input無法獲取焦點怎么辦”這篇文章吧。
在bootstrap的模態框里使用select2插件,會導致select2里的input輸入框沒有辦法獲得焦點,沒有辦法輸入.
解決方法:
1.
把頁面中的 tabindex="-1"
刪掉(測試成功):
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 id="myModalLabel">Panel</h4> </div> <div class="modal-body" > <div id="myModal" class="modal hide fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 id="myModalLabel">Panel</h4> </div> <div class="modal-body" >
可以在onshown方法里面做處理,主要原理就是因為bootstrap的tabindex='-1'
,占用了select2的tabindex='0'
,腳本做處理 模態框顯示出來后,將模態框的tabindex屬性刪掉
BootstrapDialog.show({ onshown: function (dialogRef) { $("#"+dialogRef.getId()).removeAttr("tabindex"); } })
2.
重寫enforceFocus方法(測試發現沒有效果):
$.fn.modal.Constructor.prototype.enforceFocus = function() {};
以上是“BootStrap模態框和select2合用時input無法獲取焦點怎么辦”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。