The text teaches you how to use the on method and simulate the hover method.
The code is as follows:
$(obj).on("mouseover mouseout",function(event){
if(event.type == "mouseover"){
//Mouse hover
}else if(event.type == "mouseout"){
//Mouse away
}
})
Hurry up and try it~