我想在点击按钮时切换工具提示。怎么办?
<button class="btn btn-primary fa fa-plus" data-target="tooltip" title="show more"> </button>
<script>
$("button").click(function(){
$("button").toggleClass("fa-minus");
// what is the code to toggle tool tip
});
</script>
答案 0 :(得分:2)
您只需要更改按钮上的title属性。
if ($("button").hasClass("fa-minus")) {
$("button").attr("title","show more");
}
else {
$("button").attr("title","show less");
}