我正在使用HINT.css
并希望在单击 div/class 时隐藏提示,并在使用鼠标离开 div/class 时打开它。我认为我在这里所拥有的非常简单。我很惊讶它没有用,我错过了什么?
<div class="promo">
<div class="offer hint--top hint--info hint--rounded hint--info"
data-hint="PUT SOME COOL COPY, TO GET PEOPLE TO CLICK!!!"></div>
</div>
$(document).ready(function() {
$( '.promo' ).on('click','.offer', function(){
$(this).hide();
});
$( '.promo' ).on('mouseleave','.offer', function(){
$(this).show();
});
}); //end of document ready