“JQuery on Hover Event” Kod odpowiedzi

JQuery Funkcja Hover

$(document).ready(function() {
            $("p").hover(function() {
                $(this).css("background-color", "green");
            }, function() {
                $(this).css("background-color", "yellow");
            });
        });
Hungry Hippopotamus

JQuery on Hover Event

$(".selector").on({
    mouseenter: function () {
        //stuff to do on mouse enter
    },
    mouseleave: function () {
        //stuff to do on mouse leave
    }
});
Weary Wildebeest

JQuery Hover

$( "div.enterleave" )
  .mouseenter(function() {
    n += 1;
    $( this ).find( "span" ).text( "mouse enter x " + n );
  })
  .mouseleave(function() {
    $( this ).find( "span" ).text( "mouse leave" );
  });
Sergiu The Man

Odpowiedzi podobne do “JQuery on Hover Event”

Pytania podobne do “JQuery on Hover Event”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu