通过 URL 触发脚本
我有这个脚本,如果 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
几乎没有错误——一个括号和两个逗号。使用可视化 IDE 来跟踪括号。
There were few errors - a bracket, and 2 commas. Use visual IDE to track the brackets.
您可以使用:
如果
glob=1
是唯一的参数,否则使用:You can use:
If
glob=1
is the only parameter otherwise use: