El objeto window.history puede ser escrito sin prefijo.
Se compone de
history.back() (atrás)
history.forward() (adelante)
Ejemplo:
<html>
<head>
<script>
function goBack()
{
window.history.back()
}
</script>
</head>
<body>
<input type="button" value="Back" onclick="goBack()">
</body>
</html>
No hay comentarios:
Publicar un comentario