0

这段代码就像基于 Apache 的服务器上的冠军一样工作。

    <script type="text/javascript">
    jQuery(document).ready(function(){
if (document.cookie.indexOf('visited=true') == -1) {
    var fifteenDays = 1000*30;
    var expires = new Date((new Date()).valueOf() + fifteenDays);
    document.cookie = "visited=true;expires=" + expires.toUTCString();
    $.colorbox({inline:true, href:"#subscribe"});
}
});
         </script> 
     <style type="text/css">
     .bssubpop { display:none; }
     </style>

    <p><a class='bssubpop' href="#">Subscription box</a></p>
<!-- This contains the hidden content for inline calls -->
<div style='display:none'>
    <div id='subscribe' title='sub'>
    <a href="/newsletter-sign-up.html"><img src="https://www.stogieboys.com/images/bspop.jpg" width="600" height="600" /></a>       
    </div>
</div>

但是当我将它移动到基于 nginx 而不是 apache 的“实时”服务器上时,我永远得到一个 loading.gif 并且它永远不会加载图像。

我知道我是使用 nginx 服务器的新手,但我开始把我剩下的头发拉出来。

任何和所有的帮助都会很棒。

仅供参考,是的,我知道 var FifthDays 不等于它,但一旦它起作用就可以了。我通过在浏览器中输入来检查图像位置,它就在它应该在的位置,所以不是那样的。

4

1 回答 1

0

原来我是个笨蛋。nginx 站点上的 colorbox.js 文件与 apache 站点不同。当我有时间跟踪和比较文件时,我注意到了这一点并立即修复了它。

var FiveDays 现在也设置为 15 天。

于 2013-10-02T15:29:09.917 回答