我想讓頁面上的元素消失並在用戶單擊另一個元素時重新出現。我的代碼如下所示:jQuery懸停問題
<script type="text/javascript">
$('.affordable').hover(function() {
$('#reason-a').toggle();
});
</script>
<span class="affordable">Affordable</span>
<span class="turnaround">Fast Turnaround</span>
<span class="communication">Communication</span>
<div id="reason-a">Affordable information</div>
我希望用戶能夠懸停在負擔得起的類,然後顯示在經濟實惠的信息。然後,當用戶懸停字時,信息應該消失。
非常感謝
@dele的jsfiddle例如http://jsfiddle.net/4xruD/ – kobe 2011-05-08 16:34:01