HugoJapa Posted March 20, 2012 Report Share Posted March 20, 2012 Fala galera!Estou com um problema.Estou com uma especie de formulario, mas que gostaria que os dados fossem salvos com o clicar de um botão, "Save", ao mesmo tempo apagando os valores digitados. Depois, ao apertar o botão "Load", esses dados voltariam a aparecer em cada caixa de texto. É possivel fazer isso com cookies? Como poderia fazer? Perdão, mas não sei mexer muito bem com cookies, então vou postar um codigo exemplo para facilitar.**********<html> <head> <title> Testando cookie </title> </head> <body> <p> Valor 1 = <input type="text" id="valor1"> </p> <p> Valor 2 = <input type="text" id="valor2"> </p> <P> Valor 3 = <input type="text" id="valor3"> </p> <p> <input type="button" id="botaosave" value="Save"> <input type="button" id="botaoload" value="Load"> </p> </body></html>**********GratoHugo Quote Link to comment Share on other sites More sharing options...
0 Roger Mauricio Takemiya Posted March 21, 2012 Report Share Posted March 21, 2012 Olha o exemplo...dá uma estudada também nesse materialhttp://www.w3schools.com/js/js_cookies.asp<html> <head> <title> Testando cookie </title> <script> function g(d){ return document.getElementById(d); } function load(){ g('valor1').value = getCookie('valor1'); g('valor2').value = getCookie('valor2'); g('valor3').value = getCookie('valor3'); } function save(){ setCookie('valor1',g('valor1').value,1); setCookie('valor2',g('valor2').value,2); setCookie('valor3',g('valor3').value,3); g('valor1').value = ""; g('valor2').value = ""; g('valor3').value = ""; } /* Fonte http://www.w3schools.com/js/js_cookies.asp */ function setCookie(c_name,value,exdays) { var exdate=new Date(); exdate.setDate(exdate.getDate() + exdays); var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString()); document.cookie=c_name + "=" + c_value; } /* Fonte http://www.w3schools.com/js/js_cookies.asp */ function getCookie(c_name) { var i,x,y,ARRcookies=document.cookie.split(";"); for (i=0;i<ARRcookies.length;i++) { x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("=")); y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1); x=x.replace(/^\s+|\s+$/g,""); if (x==c_name) { return unescape(y); } } } </script> </head> <body> <p> Valor 1 = <input type="text" id="valor1"> </p> <p> Valor 2 = <input type="text" id="valor2"> </p> <P> Valor 3 = <input type="text" id="valor3"> </p> <p> <input type="button" id="botaosave" value="Save" onclick="save()"> <input type="button" id="botaoload" value="Load" onclick="load()"> </p> </body> </html>toma cuidado com seus cookies hein auheseASEHAESH Quote Link to comment Share on other sites More sharing options...
0 HugoJapa Posted March 21, 2012 Author Report Share Posted March 21, 2012 Fala Roger!testei o codigo aqui, mas quando dou load, aparece "undefined". Tem alguma coisa a ver com a função "save()" que você criou? O que são os valores 1, 2 e 3 que estão como argumentos de "setCookie()"? Quote Link to comment Share on other sites More sharing options...
Question
HugoJapa
Fala galera!
Estou com um problema.
Estou com uma especie de formulario, mas que gostaria que os dados fossem salvos com o clicar de um botão,
"Save", ao mesmo tempo apagando os valores digitados. Depois, ao apertar o botão "Load", esses dados voltariam
a aparecer em cada caixa de texto. É possivel fazer isso com cookies? Como poderia fazer? Perdão, mas não sei mexer
muito bem com cookies, então vou postar um codigo exemplo para facilitar.
**********
<html>
<head>
<title>
Testando cookie
</title>
</head>
<body>
<p>
Valor 1 = <input type="text" id="valor1">
</p>
<p>
Valor 2 = <input type="text" id="valor2">
</p>
<P>
Valor 3 = <input type="text" id="valor3">
</p>
<p>
<input type="button" id="botaosave" value="Save">
<input type="button" id="botaoload" value="Load">
</p>
</body>
</html>
**********
Grato
Hugo
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.