私は次のように要素に割り当てられたQティップ持っている:「コンテンツ」でQTipを使用してトリガー要素にアクセスするにはどうすればよいですか?
$('#myDiv').qtip({
show: { when: { event: 'click', } },
hide: { when: { event: 'unfocus' } },
style: {
border: {
width: 5,
radius: 10
},
padding: 10,
textAlign: 'center',
tip: true, // Give it a speech bubble tip with automatic corner detection
name: 'red' // Style it according to the preset 'cream' style
},
position: {
corner: {
tooltip: 'topMiddle', // Use the corner...
target: 'bottomMiddle' // ...and opposite corner
}
},
content: {
text: self.parent('.qtip').html(),
title: { text: 'My Title' }
},
});
の下で「テキスト」を、私がクリックされた後に表示されるように、このQティップをトリガー要素のinnerHTMLプロパティにアクセスしようとしています。
しかし、上記のように私の現在の手段はself.parent('.qtip').html()
ではありません。
これを行う標準的な方法は何ですか?ありがとう。
ページにqtipで複数の要素がある場合は、クラスセレクタを使用しないでください(#) – rovsen