Load "Hidden" fields by javascript

Asked

Viewed 2,310 times

-3

I have these fields hidden:

<input type="hidden" id="idServico" />
        <input type="hidden" id="trasladoServico" />
        <input type="hidden" id="ingressoServico" />
        <input type="hidden" id="passeioServico" />
        <input type="hidden" id="servicoServico" />
        <input type="hidden" id="valorTraslado" />
        <input type="hidden" id="valorIngresso" />
        <input type="hidden" id="valorPasseio" />
        <input type="hidden" id="valorServico" />
        <input type="hidden" id="diaIngresso" />
        <input type="hidden" id="diaPasseio" />
        <input type="hidden" id="diaServico" />

I wonder how I do to load these fields with . Some of these fields come from checkbox, others come from Selection, like, dayPasseio all starting with day. Others, like idServico is in a Session.

  • 2

    Sorry but I could not understand well your need, you want to create these fields using javascript?

1 answer

3

Just access them with Document.getElementById.

Set the value:

 document.getElementById("idServico").value = 'valor que você quer...';
 document.getElementById("trasladoServico").value = 'valor que você quer...';
 document.getElementById("ingressoServico").value = 'valor que você quer...';
 document.getElementById("passeioServico").value = 'valor que você quer...';
 document.getElementById("servicoServico").value = 'valor que você quer...';
 document.getElementById("valorTraslado").value = 'valor que você quer...';
 document.getElementById("valorIngresso").value = 'valor que você quer...';
 document.getElementById("valorPasseio").value = 'valor que você quer...';
 document.getElementById("valorServico").value = 'valor que você quer...';
 document.getElementById("diaIngresso").value = 'valor que você quer...';
 document.getElementById("diaPasseio").value = 'valor que você quer...';
 document.getElementById("diaServico").value = 'valor que você quer...';

Reclaim the value:

var idServico = document.getElementById("idServico").value;
var idServico = document.getElementById("trasladoServico)".value;
var ingressoServico= document.getElementById("ingressoServico").value;
var passeioServico= document.getElementById("passeioServico").value;
var servicoServico= document.getElementById("servicoServico").value;
var valorTraslado= document.getElementById("valorTraslado").value;
var valorIngresso= document.getElementById("valorIngresso").value;
var valorPasseio= document.getElementById("valorPasseio").value;
var valorServico= document.getElementById("valorServico").value;
var diaIngresso= document.getElementById("diaIngresso").value;
var diaPasseio= document.getElementById("diaPasseio").value;
var diaServico= document.getElementById("diaServico").value;

Browser other questions tagged

You are not signed in. Login or sign up in order to post.