es decir, puedo pasar a otra pagina y no perder los resultados
hasta que yo le diga que se borre
ojala alguien tenga un ejemplo
o me lo puedan decir con este mismo ejemplo
mil gracias
Código Javascript:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> <script type="text/javascript"> function d(){ a1=parseInt(document.getElementById('a').value); a2=parseInt(document.getElementById('b').value); total=a1+a2; document.getElementById('c').value=total; } </script> </head> <body> <form id="form1" name="form1" method="post" action=""> <label>dato <input type="text" id="a" /> </label> <label>dato2 <input type="text" id="b" /> </label> total <label> <input type="text" id="c" /> </label> como guardar el resultado para que no se pierda con puro javascript la mover a otra pagina <p> <label> <input type="button" onclick="d()" value="Enviar" /> </label> </p> </form> </body> </html>