Jump to content
Fórum Script Brasil
  • 0

Save e Load com cookie


HugoJapa

Question

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

  • 0

Olha o exemplo...

dá uma estudada também nesse material

http://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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...