引导程序Tooltip.prototype.fixTitle()的覆盖方法

时间:2014-09-18 13:23:20

标签: jquery twitter-bootstrap tooltip twitter-bootstrap-tooltip bootstrap-tour

您好我在我的网站中使用Bootstrap tour,我想覆盖以下方法

  Tooltip.prototype.fixTitle = function () {
    var $e = this.$element
    if ($e.attr('title') || typeof ($e.attr('data-original-title')) != 'string') {
      $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
    }
  }

你能解释一下如何覆盖这个吗?

如果我不编写此函数的代码,那么我的popover工作正常。它将标题显示为像

这样的集合
    {
        element:   '.modal-content .existing-attachments img:eq(2)',
        placement: 'top',
        title:     _t("Select Cover"),
        content:   _t("Select the approprite cover."),
        popover:   { fixed: true },
    },

但是由于这个功能它没有显示我在选项“Select Cover”中设置的标题,它显示了我想要设置弹出窗口的图像标题。

<img class="img img-responsive" src="/website_blog/static/src/img/library/woodtexture.jpg" alt="Wood Wall Texture" title="Wood Wall Texture">

你能帮助我吗?

1 个答案:

答案 0 :(得分:3)

您可以使用$.fn.tooltip.Constructor.prototype

访问Tooltip的所有原型函数