页面重新加载后不加载Bootstrap Modal

时间:2018-01-31 08:01:02

标签: javascript html modal-dialog bootstrap-modal

在页面刷新一定次数后,不会加载Bootstrap Modal。 之后,当我以隐身方式打开页面时,模式才会显示。 有没有人对这个bug有任何修复? 您可以前往实际网站查看:http://www.petalandco.com.au/

JS:

jQuery(window).load(function(){
    setTimeout(function(){
        var hiddenmodal = getCookie('hiddenmodal');
        if (hiddenmodal == "") {
            jQuery('#popupNewsletterModal').modal('show');
        }
    }, 100);

HTML:


                   

<!-- Modal -->
<div class="modal fade" id="popupNewsletterModal" tabindex="-1" role="dialog">
  <div class="modal-dialog" role="document" style="width:679px;height:439px;">
    <div class="modal-content" style="<?php echo ($style);?>">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close" style="background: rgba(0,0,0,0);top:0px;">
            <span aria-hidden="true" style="color:#000;font-size:40px;">&times;</span>
        </button>
        <div class="modal-body">
             <div class="widget popupnewsletter-widget heading__center">

0 个答案:

没有答案