文字教你用on方法,模擬hover方法。 程式碼如下: 複製程式碼 程式碼如下: $(obj).on("mouseover mouseout",function(event){ if(event.type == "mouseover"){ //滑鼠懸浮 }else if(event.type == "mouseout"){ //滑鼠離開 } }) 趕快去試試吧~