<button type="button" data-toggle="tooltip" data-placement="right" title="提示信息">按钮</button> <script> $(function(){ $('#btn').tooltip(); $("#btn").on("show.bs.tooltip",function(e){ $(this).html('关闭提示'); }).on("hide.bs.tooltip",function(e){ $(this).html('打开提示'); }) }); </script>

