El atributo onpaste funciona cuando algún contenido se pega en un elemento. Este atributo de evento es compatible con todos los elementos HTML. Se usa principalmente con el elemento <input>.
Hay tres formas de pegar el contenido en elementos HTML que se enumeran a continuación:
- Usa la tecla CTRL + V
- Seleccione «Pegar» en el menú de edición del navegador.
- seleccione el comando «Pegar» en el menú contextual
Etiquetas compatibles: admite todos los elementos HTML.
Sintaxis:
<element onpaste = "script">
Valor del atributo: el evento de script se ejecuta cuando se llama al atributo onpaste.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>onpaste attribute</title> <style> body { text-align:center; } h1 { color:green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>onpaste Attribute</h2> <input type="text" onpaste="Geeks()" value="A computer science portal for geeks" size="40"> <p id="sudo"></p> <script> function Geeks() { document.getElementById("sudo").innerHTML = "pasted text!"; } </script> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo onpaste se enumeran a continuación:
- safari de manzana
- Google Chrome
- Firefox
- Ópera
- explorador de Internet
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA