Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Fancybox 插件来显示画廊。它工作得很好,因为我可以使用手动链接打开图库中的图片。
现在我想添加带有一些描述的按钮,按钮将链接到外部页面。我该怎么做?谁能帮我吗?
我已经尝试过了'title': 'This is description <a href="link.html>"<button>Buy</button></a>',但'title':'This is description', link:'link.html'他们都没有工作
'title': 'This is description <a href="link.html>"<button>Buy</button></a>'
'title':'This is description', link:'link.html'
$('.fancy').fancybox({ title: { type: 'inside' } });
将让您在标题内设置锚点。
jsfiddle
顺便说一句,您不应该将按钮放在链接内。像这样使用<button>并为其设置点击功能:
<button>
$('.myButton').on('click', function() { // do stuff });
或者只是在链接中使用普通文本。