我对点击事件和qtip2有一点疑问。
在第一次点击 element 之后$j('a[href^="/i/"]')
,当我再次在它上面移动时,会出现气泡。我希望每次单击元素时都会出现气泡。
我的代码:
$j('a[href^="/i/"]').click(function(event) {
event.preventDefault();
$j(this).qtip({
content: {
title: {
text: title_qtip,
button: true,
},
text: text_qtip,
},
show: {
// event: false, <-- doesn't work
solo: true,
ready: true
},
hide: false,
});
// $j('a[href^="/i/"]').unbind('click'); <-- doesn't work
// $j('a[href^="/i/"]').unbind('onmouseover').unbind('onmouseout'); <-- doesn't work
});