JavaScript-Twitter Bootstrap Popover无法正常工作?
作者:互联网
我具有引导程序工作的工具提示,但是无论何时我尝试启动弹出窗口,我都会收到错误Uncaught TypeError:无法读取未定义的属性’prototype’或Uncaught TypeError:无法读取未定义的属性’Constructor’的以下代码
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')
}
我不清楚打ic,因为我之前确实看到了它的作用.有任何想法吗?提前致谢.
解决方法:
我遇到了同样的问题,并且能够在Paul Watson comment的帮助下进行修复
确保在bootstrap-popover.js之前包含bootstrap-tooltip.js
标签:jquery-ui,twitter-bootstrap,syntax-error,javascript,jquery 来源: https://codeday.me/bug/20191030/1968117.html