如何仅在我的博主博客的主页上显示灯箱?

发布于 2024-12-27 09:32:21 字数 1051 浏览 0 评论 0 原文

我有这个代码:

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js'/>

     <script src='https://gj37765.googlecode.com/svn/trunk/html/[www.gj37765.blogspot.com]jquery.colorbox-min.js'/>
 <link href='https://gj37765.googlecode.com/svn/trunk/html/%5Bwww.gj37765.blogspot.com%5Dfbpopup.css' rel='stylesheet' type='text/css'/>
 <script type='text/javascript'>
     jQuery(document).ready(function(){
        if (document.cookie.indexOf(&#39;visited=flase&#39;) == -1) {
            var fifteenDays = 1000*60*60*24*30;
            var expires = new Date((new Date()).valueOf() + fifteenDays);
            document.cookie = &quot;visited=false;expires=&quot; + expires.toUTCString();
        $.colorbox({width:&quot;400px&quot;, inline:true, href:&quot;#mdfb&quot;});
            }
     });
     </script>

该代码用于一个类似 Facebook 的框,当用户访问我的博客时会出现该框。我的博客在 blogger 上。我的问题是,每当用户看到其他帖子或刷新页面时,这个 jquery 的灯箱就会一次又一次地出现。我希望它只出现在网站的主页上。我对 jQuery 一无所知。

I have this code:

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js'/>

     <script src='https://gj37765.googlecode.com/svn/trunk/html/[www.gj37765.blogspot.com]jquery.colorbox-min.js'/>
 <link href='https://gj37765.googlecode.com/svn/trunk/html/%5Bwww.gj37765.blogspot.com%5Dfbpopup.css' rel='stylesheet' type='text/css'/>
 <script type='text/javascript'>
     jQuery(document).ready(function(){
        if (document.cookie.indexOf('visited=flase') == -1) {
            var fifteenDays = 1000*60*60*24*30;
            var expires = new Date((new Date()).valueOf() + fifteenDays);
            document.cookie = "visited=false;expires=" + expires.toUTCString();
        $.colorbox({width:"400px", inline:true, href:"#mdfb"});
            }
     });
     </script>

The code is for a Facebook-like box which appears when a user visits my blog. My blog is on blogger. My problem is that the lightbox of this jquery appears again and again whenever a user sees other posts or refreshes the page. I want it to appear only on the home page of site. I don't know anything about jQuery.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红颜悴 2025-01-03 09:32:22

很可能都是"。将它们全部更改为 "。将 &39; 更改为 '

Likely its all the ". Change all of them to ". Change &39; to ' as well

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文