0
私はsvgノードをクリックしてqtipを表示してajax呼び出しを行う次のコードを用意しました。しかし、同じ要素(ターゲット)を何度もクリックすると、同じターゲットのqtipsは読み込まれません。私は何が欠けていますか?Jquery qtipが同じターゲットに対して複数回表示されないようにするにはどうすればよいですか?
$(document).ready(function() {
$('image').click(function() {
var $img = $(this);
$(this).qtip({
content: 'Loading...',
style: {
border: {
width: 5,
radius: 10
},
padding: 10,
textAlign: 'center',
tip: true, // Give it a speech bubble tip with automatic corner detection
name: 'cream' // Style it according to the preset 'cream' style
},
hide: { delay: 2000 },
show: {
when: 'click', // Don't specify a show event
ready: true, // Show the tooltip when ready
solo: true
},
position: {
corner: {
tooltip: 'bottomRight', // Use the corner...
target: 'bottomLeft' // ...and opposite corner
}
},
api: {
// Retrieve the content when tooltip is first rendered
onRender: function() {
var self = this;
self.content = '';
$.ajax({
url: window.location.href,
type: 'POST',
data: 'call=ajax&uid=' + $img.attr('data-uid'),
success: function(resp) {
self.updateContent(resp);
}
});
},
onContentUpdate: function() {
var self = this;
}
}
});
});
});
注:jquery.qtip-1.0.0-rc3.min.jsを使用しています。どんな助けもありがとう。
しかし、私は、クリック上の各SVGノードのためのQティップを表示したい場合は
更新
ショーオプションは次のように設定する必要がありますか?それをどうすれば実現できますか? – user686021
これは 'show'オプションで行います。 tipプラグインは、ドキュメントの起動時にはまだ初期化されている必要があります。 – jgauffin
私はいくつかのコード行で私のproblmeを解決しました。私のスレッドに返事をくれた皆さん、ありがとう。 $(ドキュメント).ready(関数(){ $( 'イメージ')(関数(){ VAR $ IMG = $(この)をクリックしてください。。 場合($のimg.data( 'Qティップ')){return false;} //残りのコード }); }); – user686021