Pasar valores por POST desde JavaScript
Una pequeña función para pasar variables por POST desde Javascript
function post(URL, PARAMS) {
var temp=document.createElement("form");
temp.action=URL; temp.method="POST";
temp.style.display="none";
for(var x in PARAMS) {
var opt=document.createElement("textarea");
opt.name=x; opt.value=PARAMS[x];
temp.appendChild(opt);
}
document.body.appendChild(temp);
temp.submit();
return temp;
}
post("http://ejemplo.com", {
variable:"valor",
otra_variable:100,
ora_variable_mas:"valor"
})
0 comentarios:
Publicar un comentario