私は以下のようなコードを持っていますが、エラーはinstance.content()行からです。すべてのコンテンツを動的にロードし、すべてのhrefタグに対して以下のように実行しています。 エラーが キャッチされない例外TypeErrorです:instance.contentは)私はこのjQueryプラグインajax呼び出しのためにツールチップがエラーを返す
ex.find("a[href]").each(function (idx, el) {
var el = $(el);
var url = el.prop("href").substring(4);
el.attr("href", "");
el.addClass("popuplink");
el.tooltipster({
content: 'Loading...',
// 'instance' is basically the tooltip. More details in the "Object-oriented Tooltipster" section.
functionBefore: function (instance, helper) {
var $origin = $(helper.origin);
// we set a variable so the data is only loaded once via Ajax, not every time the tooltip opens
if ($origin.data('loaded') !== true) {
$.get(url, function (data) {
// call the 'content' method to update the content of our tooltip with the returned data
instance.content(data);
// to remember that the data has been loaded
$origin.data('loaded', true);
});
}
}
});
}を修正することができますどのように機能 ではありません。
はい。バージョン4.0.4へのアップグレードが機能しました。ありがとうございました。 –