我使用的是HINT.css
,並希望在單擊div/class時隱藏提示,並在div/class外使用鼠標時打開提示。我認爲我在這裏非常簡單。我很驚訝它不起作用,我錯過了什麼?使用jQuery事件控制HINT.css庫工具提示的顯示
<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
哪部分不工作?它會給你任何JavaScript錯誤?檢查您的控制檯併發布結果。 – Derek 2013-04-10 19:42:36
你有包括jQuery嗎? – 2013-04-10 19:43:08
@Derek,沒有錯誤。 – 2013-04-10 19:53:09