如何从未完成的链接调用灯箱?
有人知道如何从自定义链接调用灯箱吗?
示例:
$('#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试 jQuery 事件绑定:
这样,当您单击类为“price1”的链接时,jQuery 将模拟单击 ID 为“price1”的 div 中的第一个链接。
You can try jQuery events binding:
This way, when you click on link with class "price1", jQuery will emulate clicking on first link in div with id "price1".