工具提示不会隐藏,如果我们在点击时禁用了按钮

Tooltip is not hiding, if we disabled the button on click

工具提示不会隐藏,如果我们在点击时禁用按钮

$("#btn").on("click", function () {
  $(this).prop("disabled", true);
});

这里有一个 运行 例子。 https://jsfiddle.net/JitanGupta/e8fjd0nL/

我正在使用 bootstrap 4

的基本设置

使用hideshow

        $("#btn").on("click", function () {
            $(this).prop("disabled", true);
             $('[data-toggle="tooltip"]').tooltip('hide');
        });

只需使用一行代码即可在单击后隐藏任何元素工具提示。

$(document).on("click","*[data-toggle='tooltip']",function(){$(this).tooltip('hide');});