JQuery Mobile popup with history=false autocloses

前端 未结 2 881
野性不改
野性不改 2020-12-21 03:18

I\'m trying to show a popup but the popup disappears automatically, without the history=false the popup stays visible but then on closing the popup the browser back action i

相关标签:
2条回答
  • 2020-12-21 03:33

    I had the same issue looking to solve this now for several hours. The solution suggested by Gajotres seamed to work first, but in the end did not on all devices. I tested with several android, desktop and iOS Browsers.

    The problem in my case was an AdSense Banner, that was hidden by the popup.

    Google AdSense will notice that the banner is no longer visible and close the popup upon loading of the AdSense banner. Removed the banner, and it workes now perfectly. Other AdSense banners on the page, which are not hidden by the popup will not affect the popup functionality.

    0 讨论(0)
  • 2020-12-21 03:39

    Working example: http://jsfiddle.net/Gajotres/2EL5R/

    $("#indexpage").on("pageshow", function () {
        var popup = setInterval(function(){
            $("#appPopup").popup("open");
            clearInterval(popup);
        },1);
    });
    

    Webkit browsers hate popup open, so setinterval needs to be used to trigger it. Same thing goes for a few other jQuery Mobile functionalities.

    0 讨论(0)
提交回复
热议问题