gpt4 book ai didi

hyperlink - 将标题转换为链接在 Lightbox 2.51 中不起作用

转载 作者:行者123 更新时间:2023-12-02 23:01:07 24 4
gpt4 key购买 nike

在从 here 下载的 Lightbox 2.51 中,无法将标题转换为链接。
这是代码:

<a href="images/examples/image-1.jpg" rel="lightbox" 
title="&lt;a target='_self' href='http://www.google.com'&gt;Google&lt;/a&gt;">
<img src="images/examples/thumb-1.jpg" alt="" />
</a>

我该怎么办?
谢谢:)

最佳答案

我在 lightbox.js 中找到了这个问题的解决方案。您必须编辑 if 情况,添加 else 条件,以避免在单击 div 时始终返回 false “灯箱”。

 $lightbox.hide().on('click', function(e) {
if ($(e.target).attr('id') === 'lightbox') {
_this.end();
return false;
}
else { // HERE
return true;
}
});

关于hyperlink - 将标题转换为链接在 Lightbox 2.51 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11119879/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com