0
我正在使用Bootstrap 3「popover with image」在徘徊的圖像上顯示更大的版本。Bootstrap JS popover取自我內容
我希望腳本將已經懸停的圖像作爲內容,而不用定位ID = popover,因此它可以在多個不同的元素上工作。
var Popover = function (element, options) {
this.init('popover', element, options)
}
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
Popover.VERSION = '3.3.4'
Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
placement: 'right',
trigger: 'click',
content: '',
template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
})