我可以在Twitter的Bootstrap Popover中添加“赞”按钮吗?
我有一个按钮,点击时会启动弹出窗口(就像这里的实时演示:http://twitter.github.com/bootstrap/javascript.html#popovers)
现在我想在popover的内容字段中使用一个简单的按钮。 那可能吗? 目前,弹出窗口只显示链接为文本“http://test.com”
目前:
<a href="#" id="example" rel="popover" data-content="http://test.com" data-original-title="Like"><img src="img/specialbutton.png"></a>
我不完全确定你的意思是用一个按钮。 为了在弹出窗口中放置一个带有“like”锚点文本和“http://test.com”链接的按钮:
1删除<a>
-tag中的所有数据-xx参考
<a href="#" id="example" rel="popover"><img src="img/specialbutton.png"></a>
2像这样调用popover
$('#example').popover({
placement: 'right',
title: 'Like this website?',
html: true,
content: '<button class="btn"><a href="http://test.com">Like</a></button>'
});
您可以在content
放置多种类型的HTML标签,也许您需要在各种社交媒体上添加一些按钮。 如果你想添加一个Facebook按钮,你必须遵循这个指导原则,并将从那里生成的代码插入到内容中
上一篇: Can I add a "Like" Button in Twitter's Bootstrap Popover?