ツールチップを必要とするサイトを構築しているため、jQuery プラグインを試してみました。ツールチップは、ホバー時にデータを提供するために AJAX を使用します。アイテムのツールチップ セクションを追加するまで、すべて正常に機能していました。コードを追加して保存した後、ツールチップと一部の jQuery 要素が機能しなくなっていることに気付きました (xbbcode プラグインも機能しなくなりましたが、ブートストラップ、カラー ピッカー、および増幅は引き続き正常に機能していました)。
戻ってコードを削除して、そこで何か間違ったことをしたかどうかを確認しましたが、エラーは引き続き発生します! 追加のツールチップ以外は何も変更していないので、突然機能しなくなった理由がわかりません。追加しようとしていたアイテムのツールチップを含む、使用したコードを次に示します (一番下の ターゲティング.item
)。
$(document).ready(function() {
// Retrieve stored data
var bannerData = amplify.store("banner");
var haData = amplify.store("ha");
var petData = amplify.store("pet");
if (bannerData === true) {
$('#banner').addClass('hidden');
$('#banner-collapse').text("Expand [+]");
}
if (haData === true) {
$('#ha').addClass('hidden');
$('#collapse-ha').text("Expand Avatar [+]");
}
if (petData === true) {
$('#pet').addClass('hidden');
$('#collapse-pet').text("Expand Pet [+]");
}
// Section collapse
$('#banner-collapse').click(function () {
if (bannerData === true) {
$('#banner').slideToggle(function () {
$(this).removeClass("hidden");
});
amplify.store("banner", null);
$(this).text(function(i, text) {
return text === "Expand [+]" ? "Collapse [-]" : "Expand [+]";
});
}
else {
$('#banner').slideToggle();
amplify.store("banner", true);
$(this).text(function (i, text) {
return text === "Collapse [-]" ? "Expand [+]" : "Collapse [-]";
});
}
});
// Avatar Collapse
$('#collapse-ha').click(function () {
if (haData === true) {
$('#ha').slideToggle(function () {
$(this).removeClass("hidden");
});
amplify.store("ha", null);
$(this).text(function(i, text) {
return text === "Expand Avatar [+]" ? "Collapse Avatar [-]" : "Expand Avatar [+]";
});
}
else {
$('#ha').slideToggle();
amplify.store("ha", true);
$(this).text(function (i, text) {
return text === "Collapse Avatar [-]" ? "Expand Avatar [+]" : "Collapse Avatar [-]";
});
}
});
// Pet Collapse
$('#collapse-pet').click(function () {
if (petData === true) {
$('#pet').slideToggle(function () {
$(this).removeClass("hidden");
});
amplify.store("pet", null);
$(this).text(function(i, text) {
return text === "Expand Pet [+]" ? "Collapse Pet [-]" : "Expand Pet [+]";
});
}
else {
$('#pet').slideToggle();
amplify.store("pet", true);
$(this).text(function (i, text) {
return text === "Collapse Pet [-]" ? "Expand Pet [+]" : "Collapse Pet [-]";
});
}
});
//Formats date
var now = moment().format("dddd, MMMM Do, <b>h:mm A</b>");
$('#date').append(now);
// Tooltips
$('.tooltip-ha').tooltipster({
animation: 'grow',
delay: 200,
trigger: 'hover',
position: 'right',
contentAsHTML: true,
functionInit: function(origin, content) {
// when the request has finished loading, we will change the tooltip's content
$.ajax({
type: 'GET',
url: '/haTooltip',
success: function(data) {
origin.tooltipster('content', data);
}
});
// this returned string will overwrite the content of the tooltip for the time being
return 'Wait while we load new content...';
}
});
$('.tooltip').tooltipster({
animation: 'grow',
delay: 200,
trigger: 'hover',
position: 'right',
contentAsHTML: true,
functionInit: function(origin, content) {
// when the request has finished loading, we will change the tooltip's content
$.ajax({
type: 'GET',
url: '/petTooltip',
success: function(data) {
origin.tooltipster('content', data);
}
});
// this returned string will overwrite the content of the tooltip for the time being
return 'Wait while we load new content...';
}
});
$('.item').tooltipster({
animation: 'grow',
delay: 200,
trigger: 'hover',
position: 'right',
contentAsHTML: true,
functionInit: function(origin, content) {
// when the request has finished loading, we will change the tooltip's content
$.ajax({
type: 'GET',
url: '/itemTooltip',
success: function(data) {
origin.tooltipster('content', data);
}
});
// this returned string will overwrite the content of the tooltip for the time being
return 'Wait while we load new content...';
}
});
});
ここには目に見えるエラーは見られません。すべてのプラグイン スクリプトを 1 つのファイルにまとめ、読み込み時間を最小限に抑えるために縮小しましたが、xbbcode と tooltipster が突然機能しない理由を突き止めようとして、別のバージョンを再ダウンロードしました。 . 通常、この場合、tooltipster と xbbcode の間の何らかの互換性エラーが疑われますが、アイテムのツールチップが追加される前は問題なく機能していました。ツールチップが再び機能し始めるかどうかを確認するために xbbcode を一時的に削除したところ、結果は次のようになりました。同じ。