我想以最簡潔的方式在骨幹事件中使用HoverIntent jQuery插件。骨幹應用中的HoverIntent
這裏是(簡化爲清楚起見)事件:
events:
'mouseenter' : 'onMouseEnter'
'mouseleave' : 'onMouseLeave'
onMouseEnter: ->
@$('.foo').show()
onMouseLeave: ->
@$('.foo').hide()
基本上,我不希望herky生澀顯示和隱藏有人跑在頁面上鼠標,所以HoverIntent似乎是要走的路。我已經包含在我的項目中,它已經準備好了......但我不清楚如何在骨幹視圖中正確調用它。建議?
謝謝。這些事件是我需要的! –
對我來說,這些在插件的第120行上拋出'TypeError:$ .event.handle是未定義的'。使用普通的老鼠'mouseenter'和'mouseleave'可以正常工作,但無法讓意圖部分工作。 –
http://stackoverflow.com/questions/16527658/jquery-error-typeerror-event-handle-is-undefined –