La propiedad SVG Window.history devuelve una referencia al objeto Historial.
Sintaxis:
var e = window.history
Valor devuelto: esta propiedad devuelve una referencia al objeto Historial.
Ejemplo 1: En este ejemplo usaremos el evento onclick.
html
<!DOCTYPE html> <html> <body> <center> <h1>GeeksforGeeks</h1> <button onclick="get()"> Get History </button> <br><br> <div id="g"></div> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <script type="text/javascript"> function get() { console.log(window.history); } </script> </svg> </center> </body> </html>
Producción:
Ejemplo 2: En este ejemplo usaremos el evento onmouseover.
html
<!DOCTYPE html> <html> <body> <center> <h1>GeeksforGeeks</h1> <button onmouseover="get()"> Get History </button> <br><br> <div id="g"></div> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <script type="text/javascript"> function get() { console.log(window.history); } </script> </svg> </center> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 1 y superior
- Borde 12 y superior
- Firefox 1 y superior
- Safari 1 y superior
- Ópera 3 y superior
- Internet Explorer 4 y superior