Twitter Bootstrap modal on mobile devices

前端 未结 12 2077
忘了有多久
忘了有多久 2020-12-02 04:20

Bootstrap modals don\'t work correctly on Android and iOS. The issue tracker acknowledges the problem but does not offer a working solution:

Modals in 2.0 are broke

12条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-02 05:23

    you can add this property globally in javascript:

    if( navigator.userAgent.match(/iPhone|iPad|iPod/i) ) {
        var styleEl = document.createElement('style'), styleSheet;
        document.head.appendChild(styleEl);
        styleSheet = styleEl.sheet;
        styleSheet.insertRule(".modal { position:absolute; bottom:auto; }", 0);
     }
    

提交回复
热议问题