Jquery Facebox 插件不起作用

发布于 2024-08-19 11:47:52 字数 313 浏览 11 评论 0原文

我从famspam.com/facebox 下载了facebox。 然后我将facebox.js添加到public/javascripts文件夹中,并将facebox.css添加到public/stylesheets中

然后我在原始Jquery库版本1.4之后将此文件包含在我的application.html.erb中

最后,我将rel属性设置为我的a href 标签尝试使用 Facebox,但它没有出现。单击带有 rel="facebox" 的链接时,我只在当前的浏览器选项卡中看到一张图片。

请帮我处理 Facebook 的问题。

I downloaded facebox from famspam.com/facebox.
Then I added facebox.js to be in public/javascripts folder, and facebox.css in public/stylesheets

Then I included this files in my application.html.erb AFTER original Jquery library ver 1.4

The last, I set a rel attribute to my a href tags to try to use Facebox, but it doesn't appear. When clicking on the link with rel="facebox", I just see a picture in my current browser tab.

Please, help me with facebox.

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

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

发布评论

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

评论(2

寒江雪… 2024-08-26 11:47:52

你调用facebox() onLoad了吗?

jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox() 
})

Did you call facebox() onLoad?

jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox() 
})
橘味果▽酱 2024-08-26 11:47:52

您还需要设置图像在哪里(关闭图像并加载图像)

$(document).ready(function() {
$.facebox.settings.closeImage ='http://www.yoursite.com/functions/closelabel.png'
$.facebox.settings.loadingImage = 'http://www.yoursite.com/functions/loading.gif'
$('a[rel*=facebox]').facebox();   
});

Also you need to set where is the images (close image and load image)

$(document).ready(function() {
$.facebox.settings.closeImage ='http://www.yoursite.com/functions/closelabel.png'
$.facebox.settings.loadingImage = 'http://www.yoursite.com/functions/loading.gif'
$('a[rel*=facebox]').facebox();   
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文