如何阻止/阻止工具提示隐藏在角度工具提示中的QPixmap
/ QImage
上?
我需要在按钮点击时显示和隐藏工具提示。
答案 0 :(得分:0)
app.directive('tooltip', function(){
return {
restrict: 'A',
link: function(scope, element, attrs){
$(element).hover(function(){ // or you can use click instaed of hover
// on mouseenter
$(element).tooltip('show');
}, function(){
// on mouseleave
$(element).tooltip('show'); //or you can remove this one
});
}
};
});