$(selector).hover(handlerInOut) 。
等同于:$( selector ).on( "mouseover mouseout", handlerInOut )
就可以触发鼠标放上去的事件。
很简单不用Js,也不用大量代码,关键是样式 里加一句就行:
li:hover {background:#4949d2 border-radius: 8px}
$(selector).hover(handlerInOut) 。
等同于:$( selector ).on( "mouseover mouseout", handlerInOut )
就可以触发鼠标放上去的事件。
很简单不用Js,也不用大量代码,关键是样式 里加一句就行:
li:hover {background:#4949d2 border-radius: 8px}