我有引导程序工作的工具提示,但是每当我尝试启动弹出窗口时,我都会收到错误Uncaught TypeError: Cannot read property 'prototype' of undefined或Uncaught TypeError: Cannot read property 'Constructor' of undefined使用以下代码
Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype, {
constructor: Popover
, setContent: function () {
var $tip = this.tip()
, title = this.getTitle()
, content = this.getContent()
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
$tip.find('.popover-content')[this.options.html ? 'html' : 'text'](content)
$tip.removeClass('fade top bottom left right in')
}
我不清楚打嗝,因为我之前确实看到它工作过。有任何想法吗?提前致谢。