我有一個HTML div元素,單擊時會顯示一個twitter引導彈出窗口。當前代碼看起來是這樣的:爲什麼html標題屬性和twitter引導數據原始標題互斥?
<div class="popover" title="supplementary info about html element"
data-original-title="popover title" data-content="popover content...">
</div>
$(document).on('ready', function() {
App.Utils.Popover.enableAll();
});
App.Utils.Popover = {
enableAll: function() {
$('.popover').popover(
{
trigger: 'click',
html : true,
container: 'body',
placement: 'right'
}
);
};
問題是,Twitter的引導需要的標題屬性值,並顯示作爲彈出,而不是使用數據原始標題的標題。任何方式使兩者按照預期一起工作?
意圖是什麼? – Alohci 2013-03-18 22:36:28
這可能有助於https://github.com/twbs/bootstrap/issues/15359 – 2016-07-25 07:35:17