0
Alguien sabe como muestro los datos de un formulario en otra página con Javascript
JavaScript
2 Respostas
0
Send your data in base64 for url and read in new page after decode . // It is client side, solution in server side write more details!
0
In firt page send URL pure "Serialize"
location.search = '?'+$('form').serialize(); // JQuery
// Exemple of URL yourPage.html?nome=mart&age=32
Second page use:
output = location.search.slice(1).split('&').map(v=>v.split('='));
// Output
[
["nome","mart"],
["age","32"]
]
// Font
https://pt.stackoverflow.com/questions/287393/serialize-com-javascript-puro