SVG significa Gráfico vectorial escalable. Se puede usar para hacer gráficos y animaciones como en el lienzo HTML.
El elemento SVG <script> permite agregar scripts a un documento SVG.
Sintaxis:
<script> // Script Here </script>
Atributos:
- crossorigin: Esto define la configuración de COS.
- href: Esto define la URL href para cargar.
- type: Tipo de lenguaje o escritura a utilizar.
- Atributos globales: algunos atributos globales utilizados como atributos principales y atributos de estilo, etc.
Ejemplo 1:
html
<!DOCTYPE html> <html> <body> <svg width="400" height="200" xmlns="http://www.w3.org/2000/svg"> <script type="text/javascript"> alert("GeeksforGeeks"); </script> </svg> </body> </html>
Producción:
Ejemplo 2:
html
<!DOCTYPE html> <html> <body> <svg width="400" height="200" xmlns="http://www.w3.org/2000/svg"> <script> console.log( "GeeksforGeeks: Computer Science Portal for Geeks"); </script> </svg> </body> </html>
Producción:
Navegadores compatibles: los siguientes navegadores son compatibles con este elemento SVG:
- Chrome 1 y superior
- Borde 12 y superior
- Firefox 1.5 y superior
- Safari 3.1 y superior
- Internet Explorer 9 y superior
- Ópera 9 y superior