我正在使用灯箱图像查看器,我想在图像查看器上添加一个按钮,上面写着下载。当他们点击它时,他们将被带到一个外部链接。
Lightbox 已经使用了 href,所以我添加了一个类。
我只需要让它像
http://www.websitetogo.com = 一类
一个类=thisiswheretogo
location.href = 'thisiswheretogo' ;
对不起我的错误解释
HTML
<a href="img/image viewer/the-infinity.png" rel="lightbox" class="http://www.websitetogo.com" >...</a>
JavaScript
$lightbox.find('.download').on('click', function(e) {
location.href = 'class' ;
return false;
});