我正在处理一个涉及共享按钮的页面,当点击该按钮时,弹出一个Twitter引导程序弹出窗口,里面是共享链接。
var content = '<a href="http://www.facebook.com/share.php?u='+link+'">Post to facebook</a><br>';
content += '<a href="http://twitter.com/home?status='+link+'">Post to twitter</a><br>';
$('.sharelist').popover({
'title': 'Share this Playlist',
'placement': 'bottom',
'html': true,
'content': content
});
它几乎就是这样。弹出的东西,链接在那里和蓝色,在它们上面盘旋会将光标变为一只小手,但是当我点击时,没有任何反应!我可以右键单击在新选项卡中打开,链接再次起作用。
为什么会这样?
答案 0 :(得分:0)
更新:
ADD A CLASS TO YOUR LINK NAMED "post-popover" and
$(document).ready(function() {
$('.post-popover').popover({
placement: 'bottom',
title: 'Share this Playlist',
content: 'content',
html: true,
trigger: 'click'
});
});