您好,我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', '')
}
}
你能解释一下如何覆盖这个吗?
如果我不编写此函数的代码,那么我的弹出框运行良好。它向我显示标题作为一个集合
{
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">
你能帮助我吗 ?