event.type es una propiedad incorporada en jQuery que se usa para devolver qué tipo de evento se inicia.
Sintaxis:
event.type
Parámetro: No acepta ningún parámetro porque es una propiedad no una función.
Valor devuelto: Devuelve qué tipo de evento se ha activado.
Código jQuery para mostrar el funcionamiento de la propiedad event.type:
<html> <head> <!-- jQuery code to show the working of this property --> <script src="https://code.jquery.com/jquery-1.10.2.js"> </script> <script> $(document).ready(function() { $("#div1").on("click dblclick mouseover mouseout", function(event) { $(".div2").html("Event: " + event.type); }); }); </script> <style> #div1 { width: 230px; height: 100; display: block; padding: 25px; border: 2px solid green; font-size: 20px; } .div2 { width: 170px; margin: 10px; height: 50px; padding: 10px; border: 2px solid green; } </style> </head> <body> <!-- move mouse over this box --> <div id="div1">Do any event in this box !!</div> <!-- events are being shown in this box --> <div class="div2"></div> </body> </html>
Salida:
antes de mover el mouse a cualquier lugar-
Después de mover el mouse sobre la caja grande,
Después de mover el mouse fuera de la caja grande,
Publicación traducida automáticamente
Artículo escrito por kundankumarjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA