Vitor Patrício Posted March 9, 2017 at 12:18 AM Report Share #602988 Posted March 9, 2017 at 12:18 AM Olá amigos, Tenho um código que cria uma caixa de combinação e seus dados. No entanto sempre que fecho a janela, perco os dados. Como faço para os manter? Cumprimentos. Patrício Link to comment Share on other sites More sharing options...
M6 Posted March 9, 2017 at 11:25 AM Report Share #602996 Posted March 9, 2017 at 11:25 AM Guarda-os num ficheiro ou numa base de dados. 1 Report 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to comment Share on other sites More sharing options...
Jefferson Reis Posted March 9, 2017 at 12:21 PM Report Share #602998 Posted March 9, 2017 at 12:21 PM Olá, você pode manter os dados no LocalStorage do seu browser, segue um link que pode te ajudar. http://blog.thiagobelem.net/armazenando-informacoes-no-computador-do-visitante-com-localstorage-e-sessionstorage 1 Report Link to comment Share on other sites More sharing options...
Vitor Patrício Posted March 10, 2017 at 11:37 PM Author Report Share #603048 Posted March 10, 2017 at 11:37 PM "Esse código apenas corre no browser, é necessário ter uma componente no servidor que permita guardar a informação e disponibilizá-la. " Como posso montar este componente, no servidor? Link to comment Share on other sites More sharing options...
Vitor Patrício Posted March 11, 2017 at 09:04 AM Author Report Share #603049 Posted March 11, 2017 at 09:04 AM Jefferson Reis, Como posso introduzir esse conceito neste código : <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <meta charset="utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="jquery-3.1.1.min.js"></script> <script type="text/javascript"> function AddValue() { var valueToAdd = $( "#Textbox" ).val(); $( "#Listbox" ).append( '<option value="' + valueToAdd + '">' + valueToAdd + '</option>' ); } function RemoveValue() { var valueToRemove = $( "#Textbox" ).val(); $( "#Listbox option[value='" + valueToRemove + "']" ).remove(); } function RemoveSelectedValue() { $( "#Listbox option:selected" ).remove(); } </script> </head> <body> <input id="Textbox" type="text" /> <br /> <input id="Add" type="button" value="Adicionar" onclick="AddValue();" /> <input id="RemoveSelected" type="button" value="Remover" onclick="RemoveSelectedValue();" /> <br /><br /> <select id="Listbox" size="1" style="width: 200px;"> </select> </body> </html> Cumprimentos Patrício Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now