通过 URL 触发脚本

发布于 2024-12-12 03:37:17 字数 532 浏览 0 评论 0原文

我有这个脚本,如果 URL 是 site.com/page.html?globe=1,则调用灯箱来触发,但它不起作用,这里的代码是:

var $j = jQuery.noConflict();
$j(document).ready(function() {
    var url = window.location.href;
    url = url.toLowerCase();
    if (url.indexOf('globe=1') != -1) {
        $j("a#fancy").fancybox({
            'padding' : 0,
            'overlayShow' : false,
        });
    }
}
});
$j("a#fancy").fancybox({
    'padding' : 0,
    'overlayShow' : false,
});

出了什么问题,为什么不起作用?我之前已经在除了 fancybox 之外的其他脚本中使用过它,并且我认为我输入了一些错误的代码。

I have this script calling a lightbox to trigger if the URL is site.com/page.html?globe=1 and it is not working here is the code:

var $j = jQuery.noConflict();
$j(document).ready(function() {
    var url = window.location.href;
    url = url.toLowerCase();
    if (url.indexOf('globe=1') != -1) {
        $j("a#fancy").fancybox({
            'padding' : 0,
            'overlayShow' : false,
        });
    }
}
});
$j("a#fancy").fancybox({
    'padding' : 0,
    'overlayShow' : false,
});

What is wrong and why does it not work? I have used this before for other scripts other than fancybox and I assume I am typing some code wrong.

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

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

发布评论

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

评论(2

2024-12-19 03:37:17
var $j = jQuery.noConflict();
$j(document).ready(function() {
    var url = window.location.href;
    url = url.toLowerCase();
    if (url.indexOf('globe=1') != -1) {
        $j("a#fancy").fancybox({
            'padding': 0,
            'overlayShow': false // extra comma removed
        });
    }
}); // extra curly bracket removed
$j("a#fancy").fancybox({
    'padding': 0,
    'overlayShow': false // extra comma removed
});

几乎没有错误——一个括号和两个逗号。使用可视化 IDE 来跟踪括号。

var $j = jQuery.noConflict();
$j(document).ready(function() {
    var url = window.location.href;
    url = url.toLowerCase();
    if (url.indexOf('globe=1') != -1) {
        $j("a#fancy").fancybox({
            'padding': 0,
            'overlayShow': false // extra comma removed
        });
    }
}); // extra curly bracket removed
$j("a#fancy").fancybox({
    'padding': 0,
    'overlayShow': false // extra comma removed
});

There were few errors - a bracket, and 2 commas. Use visual IDE to track the brackets.

梦里寻她 2024-12-19 03:37:17

您可以使用:

if(location.search === '?glob=1') { /* YOUR FANCYBOX CODE HERE */}

如果 glob=1 是唯一的参数,否则使用:

if(location.search.search('glob=1') !== -1) { /* YOUR FANCYBOX CODE HERE */}

You can use:

if(location.search === '?glob=1') { /* YOUR FANCYBOX CODE HERE */}

If glob=1 is the only parameter otherwise use:

if(location.search.search('glob=1') !== -1) { /* YOUR FANCYBOX CODE HERE */}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文