El problema desató el efecto de desplazamiento de un elemento en particular con la ayuda de JQuery. Aquí estamos usando 2 métodos JQuery .unbind() y .off() method . Aquí hay algunas técnicas discutidas.
Acercarse:
- Seleccione el elemento cuyo efecto Hover necesita ser desvinculado. (Asegúrese de que el efecto Hover debe ser agregado solo por JQuery, el efecto Hover agregado por CSS no funciona aquí).
- Utilice el método .unbind() o .off().
- Pasa los eventos que queremos desactivar para ese elemento en particular.
Ejemplo 1: Este ejemplo usa el método .unbind() .
<!DOCTYPE HTML> <html> <head> <title> How to unbind “hover” event using JQuery? </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"> </script> <style> #div { height: 100px; width: 200px; background: green; color: white; margin: 0 auto; } </style> </head> <body style="text-align:center;"> <h1 id="h1" style="color:green;"> GeeksForGeeks </h1> <p id="GFG_UP" style="font-size: 15px; font-weight: bold;"> </p> <div id="div"> Hover It </div> <br> <button onclick="gfg_Run()"> Unbind </button> <p id="GFG_DOWN" style="font-size: 23px; font-weight: bold; color: green; "> </p> <script> var el_up = document.getElementById("GFG_UP"); var el_down = document.getElementById("GFG_DOWN"); var heading = document.getElementById("h1"); var div = document.getElementById("div"); el_up.innerHTML = "Click on the button to unbind the hover from the element."; $("#div").hover(function() { $(this).css("background-color", "blue"); }, function() { $(this).css("background-color", "green"); }); function gfg_Run() { $('#div').unbind('mouseenter mouseleave'); el_down.innerHTML = "Hover effect Unbinded."; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Al pasar el cursor sobre el elemento:
- Después de hacer clic en el botón:
Ejemplo 2: Este ejemplo usa el método .off() .
<!DOCTYPE HTML> <html> <head> <title> How to unbind “hover” event using JQuery? </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"> </script> <style> #div { height: 100px; width: 200px; background: green; color: white; margin: 0 auto; } </style> </head> <body style="text-align:center;"> <h1 id="h1" style="color:green;"> GeeksForGeeks </h1> <p id="GFG_UP" style="font-size: 15px; font-weight: bold;"> </p> <div id="div"> Hover It </div> <br> <button onclick="gfg_Run()"> Unbind </button> <p id="GFG_DOWN" style="font-size: 23px; font-weight: bold; color: green; "> </p> <script> var el_up = document.getElementById("GFG_UP"); var el_down = document.getElementById("GFG_DOWN"); var heading = document.getElementById("h1"); var div = document.getElementById("div"); el_up.innerHTML = "Click on the button to unbind the hover from the element."; $("#div").hover(function() { $(this).css("background-color", "blue"); }, function() { $(this).css("background-color", "green"); }); function gfg_Run() { $('#div').off('mouseenter mouseleave'); el_down.innerHTML = "Hover effect Unbinded."; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Al pasar el cursor sobre el elemento:
- Después de hacer clic en el botón:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA