我们可以通过调整它们的内容、位置和外观实现自定义
https://github.com/iamceege/tooltipster/releases
<link rel="stylesheet" href="/static/lib/jquery/tooltip/css/tooltipster.bundle.min.css" />
<script src="https://cdn.staticfile.org/jquery/2.2.4/jquery.min.js"></script>
<script src="/static/lib/jquery/tooltip/js/tooltipster.bundle.min.js"></script>
<img src="/static/i/jquery/geometry.jpg" class="tooltip" title="This is my image's tooltip message!" />
<span class="tooltip" title="This is my span's tooltip message!">Some text</span>
$(document).ready(function() {
$('.tooltip').tooltipster();
});