La propiedad SVG Event.returnValue devuelve una string que contiene el tipo de evento.
Sintaxis:
let eventType = event.type5
Valor de retorno: esta propiedad
Ejemplo 1: En este ejemplo, usaremos el evento onclick para el elemento circular SVG .
HTML
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50" onclick="check(event)" /> <script type="text/javascript"> function check(event) { document.write( "This Event is type : ", event.type); } </script> </svg> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, usaremos el evento onclick para el elemento de texto SVG .
HTML
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <text x="50" y="20" font-size="20px" onclick="check(event)"> GeeksForGeeks </text> <script type="text/javascript"> function check(event) { document.write( "This Event type is : ", event.type); } </script> </svg> </body> </html>
Producción:
Ejemplo 3: En este ejemplo, usaremos el evento onmouseover para el elemento circular SVG .
HTML
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50" onmouseover="check(event)" /> <script type="text/javascript"> function check(event) { document.write( "This Event type is : ", event.type); } </script> </svg> </body> </html>
Producción:
Ejemplo 4: En este ejemplo, usaremos el evento onmouseover para el elemento de texto SVG .
HTML
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <text x="50" y="20" font-size="20px" onmouseover="check(event)"> GeeksForGeeks </text> <script type="text/javascript"> function check(event) { document.write( "This Event type is : ", event.type); } </script> </svg> </body> </html>
Producción: