如何从未完成的链接调用灯箱?

发布于 2024-08-12 11:14:17 字数 518 浏览 8 评论 0原文

有人知道如何从自定义链接调用灯箱吗?

示例:

$('#price1 a').lightBox(); //in the header

现在我想单击页面上某处的自定义链接。

<a href="#" class="price1">Link to lightBox</a>

div 中的图像(在单击链接之前它们不可见)

<div id="price1" style="display: none;">
    <a href="../images/img1.jpg"></a>
    <a href="../images/img2.jpg"></a>
    <a href="../images/img3.jpg"></a>
</div>  

有人可以帮忙吗?

此致!

Does somebody know, how to call a lightbox from an custom link?

Example:

$('#price1 a').lightBox(); //in the header

Now I want to click a custom link somewhere on the page.

<a href="#" class="price1">Link to lightBox</a>

And images in a div (until link clicked they are not visible)

<div id="price1" style="display: none;">
    <a href="../images/img1.jpg"></a>
    <a href="../images/img2.jpg"></a>
    <a href="../images/img3.jpg"></a>
</div>  

Could somebody please help.

Best Regards!

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

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

发布评论

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

评论(1

迟到的我 2024-08-19 11:14:17

您可以尝试 jQuery 事件绑定

$(".price1").bind("click", function() {
    $("#price1 a:first").click();
};

这样,当您单击类为“price1”的链接时,jQuery 将模拟单击 ID 为“price1”的 div 中的第一个链接。

You can try jQuery events binding:

$(".price1").bind("click", function() {
    $("#price1 a:first").click();
};

This way, when you click on link with class "price1", jQuery will emulate clicking on first link in div with id "price1".

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