1
我要創建這樣一個彈出:使用創建彈出引導
,然後將其綁定到一個HTML元素,使徘徊時,它出現。
我使用的是引導,而到目前爲止,我一直在努力這樣的:
HTML:
<a data-toggle="uid-popover" class="od-icon info-icon clientreference-info-button cursor-pointer"></a>
的Javascript:
var popoverTemplate = ['<div class="timePickerWrapper popover">',
'<div class="arrow"></div>',
'<div class="popover-content">',
'</div>',
'</div>'].join('');
var content = ['<div>TEST</div>', ].join('');
$('[data-toggle="uid-popover"]').popover({
content: content,
template: popoverTemplate,
placement: "up",
html: true
});
我想知道這是否是可能的在懸停項目前面找到彈出窗口,但我無法做到這一點,因爲「placement」參數只接受「上,下,左,右」輸入。
如果還有其他方法可以使用或不用bootstrap使彈出窗口更容易,我會非常感激的知道。
謝謝。
你可以使用QTip2經過優化,以創建彈出,你可以很容易地定位你的彈出 –
你是什麼意思'找到彈出只是在徘徊item'面前 - 你的意思是它的左邊?超過它? –
@AlexandreT我會研究這種可能性,謝謝! – avilac