Shadowbox 加载旧的 href 而不是新的 href

发布于 2024-08-02 22:35:35 字数 512 浏览 4 评论 0原文

我有一个使用 Jquery 替换 href 的代码,.attr({ href : newpath });我正在使用 Shadowbox。更改 href 并加载 Shadowbox 后,shadowbox 会加载旧的 href 而不是新的。

例如:

shadowbox link

那么jquery将是这样的:

<代码>$("#shadowboxlink").attr({href : newpath}); //而var newpath是一个像“images/secondimage.jpg”这样的字符串,

所以在执行jquery之后,shadowbowlink具有images/secondimage.jpg的正确href,但是当您加载它时,shadowbox会加载firstimage.jpg

有人有任何见解吗?谢谢! =) 肯

I have a code that replaces href's using Jquery, .attr({ href : newpath }); and I am using Shadowbox. After changing the href and loading shadowbox, the shadowbox loads the old href instead of the new one.

For example :

<a id ="shadowboxlink" href="images/firstimage.jpg" rel="shadowbox">shadowbox link</a>

then the jquery would be something like this :

$("#shadowboxlink").attr({href : newpath});
//whereas var newpath is a string like "images/secondimage.jpg"

so then after jquery is executed, the shadowbowlink has the correct href of images/secondimage.jpg, but when you load it, the shadowbox loads the firstimage.jpg

Anyone have any insight? Thanks! =)
Ken

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

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

发布评论

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

评论(3

无畏 2024-08-09 22:35:35

更改 href 属性后尝试清除缓存和设置

$("#shadowboxlink").attr({href : newpath}); //whereas var newpath is a string like "images/secondimage.jpg";
Shadowbox.clearCache();
Shadowbox.setup();

try clearing cache and setup after change the href attribute

$("#shadowboxlink").attr({href : newpath}); //whereas var newpath is a string like "images/secondimage.jpg";
Shadowbox.clearCache();
Shadowbox.setup();
不必在意 2024-08-09 22:35:35

只需查看 ShadowBox 网站上提供的信息,听起来您想要做的就是在标记中添加第二个

<a id ="shadowboxlink" href="images/firstimage.jpg" rel="shadowbox[gallery]">shadowbox link</a>
<a id ="shadowboxlink" href="images/second.jpg" rel="shadowbox[gallery]">shadowbox link</a>

并确保添加[图库](或任何您想要的名称)以将这两个图像相互关联。

如果这不是您想要做的,请尝试在更改 href 后再次运行 Shadowbox.init(); 代码。

Just by looking at the information provided on the shadowBox website, it sounds like what you want to do is just add a second <a> in your markup.

<a id ="shadowboxlink" href="images/firstimage.jpg" rel="shadowbox[gallery]">shadowbox link</a>
<a id ="shadowboxlink" href="images/second.jpg" rel="shadowbox[gallery]">shadowbox link</a>

And make sure you add the [gallery] (or whatever you want to call it) to associate those two images with each other.

If that's not what you're looking to do, try running the Shadowbox.init(); code again after changing the href.

你爱我像她 2024-08-09 22:35:35

解决方案是使用“Shadowbox.setup”并在单击某些内容时重新加载它。

谢谢大家。

The solution is to use "Shadowbox.setup" and reload it whenever you click something.

Thanks everyone.

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