How to: Add/Remove Class on mouseOver/mouseOut - JQuery .hover?

前端 未结 4 1401
自闭症患者
自闭症患者 2020-12-05 17:57

Looking to change the border color on a box..

..when the user mouses over/out..

Here\'s the attempted code.. Needs Work!

JQuery:

<         


        
4条回答
  •  盖世英雄少女心
    2020-12-05 18:25

    You are missing the dot on the selector, and you can use toggleClass method on jquery:

    $(".result").hover(
      function () {
        $(this).toggleClass("result_hover")      
      }
    );
    

提交回复
热议问题