jquery lightbox 在一个页面上工作,但在同一站点上的另一个页面上不工作

发布于 2025-01-06 10:07:07 字数 977 浏览 1 评论 0原文

程序员安装了 jquery lightbox,并且在 http://www.ozhiphopshop 上一切正常

。 com.au/sub_photos.php?id=11

上的一张图像使用完全相同的效果

我想对http://www.ozhiphopshop.com.au/product_detail.php?pro_id=69

在包含的头文件中,我已将以下脚本(在第一页上运行良好)更改

<script type="text/javascript">
$(function() {
$('#gallery a').lightBox();
$('#gallery1 a').lightBox();
});
</script>

为:

<script type="text/javascript">
$(function() {
$('a.pro_img').lightbox();
});
</script>

但这似乎不起作用。链接的文件正在新窗口中打开。

我希望灯箱使用的文件的 div 类是“pro_img”,这就是我按照自己的方式进行更改的原因。 我没有对 css 或 js 文件进行任何更改,这可能是我出错的地方。

我不是程序员,所以我只是试图对第一页上所做的事情进行逆向工程。我真的很想了解更多有关编程的知识,因此我自己来做。

我在这里注意到了同样的问题,但似乎没有一个答案与我正在处理的问题完全相关。

任何帮助将不胜感激。

一切顺利, 迈克尔

A programmer installed jquery lightbox and everything was working fine on

http://www.ozhiphopshop.com.au/sub_photos.php?id=11

I wanted to use the exact same effect for the one image on

http://www.ozhiphopshop.com.au/product_detail.php?pro_id=69

In the included header file I've changed the changed the following script (which is working fine on the first page):

<script type="text/javascript">
$(function() {
$('#gallery a').lightBox();
$('#gallery1 a').lightBox();
});
</script>

to:

<script type="text/javascript">
$(function() {
$('a.pro_img').lightbox();
});
</script>

but that doesn't seem to work. And the linked file is opening in a new window.

The div class for the file I want the lightbox to work with is 'pro_img' which is why I made the change the way I did.
I've made no changes to the css or the js files, which may be where I'm going wrong.

I'm not a programmer, so I've just been trying to reverse engineer what was done on the first page. I'm really interested in learning more about programming, hence the reason I'm doing it myself.

I've noticed the same question on here, but none of the answers seemed to relate to exactly what I'm dealing with.

Any help would be appreciated.

All the best,
Michael

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

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

发布评论

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

评论(1

赠意 2025-01-13 10:07:07

更改

$('a.pro_img').lightbox();

$('div.pro_img a').lightbox();

change

$('a.pro_img').lightbox();

to

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