Propiedad de documento de ventana SVG

La propiedad SVG Window.document

Sintaxis:

var object = window.document

Valor de retorno: esta propiedad

Ejemplo 1:

HTML

<!DOCTYPE html>
<html>
  
<body>
    <svg viewBox="0 0 1000 1000" 
        xmlns="http://www.w3.org/2000/svg">
          
        <circle cx="200" cy="200" r="50"></circle>
          
        <script type="text/javascript">
            console.log(window.document);
        </script>
    </svg>
</body>
  
</html>

Producción:

Ejemplo 2:

HTML

<!DOCTYPE html>
<html>
  
<body>
    <svg viewBox="0 0 1000 1000" 
        xmlns="http://www.w3.org/2000/svg">
          
        <text x="200" y="200">
            GeeksforGeeks
        </text>
          
        <script type="text/javascript">
            console.log(window.document);
        </script>
    </svg>
</body>
  
</html>

Producción:

 

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *