gpt4 book ai didi

javascript - 单击按钮时显示/隐藏工具提示

转载 作者:行者123 更新时间:2023-11-28 05:33:58 26 4
gpt4 key购买 nike

如何停止/阻止工具提示隐藏在 Angular 工具提示中的 mouseout/mouseleave 上?

我需要在单击按钮时显示和隐藏工具提示。

最佳答案

   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
});
}
};
});

关于javascript - 单击按钮时显示/隐藏工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39491296/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com