twitter-bootstrap – 是否可以为Twitter Bootstrap popover分配一个id?

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 是否可以为Twitter Bootstrap popover分配一个id?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经能够显示Twitter Bootstrap popovers,但有没有办法在创建时为他们分配id,所以我可以操纵它们?

到目前为止,我的代码是:
.js文件

$('#test-button').popover({content:'test.',trigger:'click'});
$('#test-button').popover('show');

html的

<a id='test-button' rel='popover'>

解决方法

您可以使用几个选项来获取popover元素:

1)修改Boostrap Popover以接受选项对象上的id属性并将其注入模板(第102行)

2)使用id设置弹出框选项的html属性,例如

$('#test-button').popover({html: true,content: '<div id="test-popover-content">... </div>'})

然后通过访问弹出框容器

var testPopover = $('#test-popover-content').parent().parent();
原文链接:https://www.f2er.com/bootstrap/233936.html

猜你在找的Bootstrap相关文章