当我尝试将鼠标悬停在图片,tooltipster应该显示的图像提示。 但我可以在第二次看到提示图像上空盘旋。 它不工作的第一次。
可能是什么原因 ?
$(document).ready(function() { $('.body_f').hover(function() { $($(this)).tooltipster({ contentAsHTML: true, content: $('<img src="http://' + $(this).attr('alt') + '.jpg" />'), }); }); };
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/tooltipster/3.0.5/js/jquery.tooltipster.min.js"></script> <img class="body_f" alt="clear" src="http://i.imgur.com/kl70A7M.jpg" alt="i.imgur.com/wttNDm6" />