Jump to content
Fórum Script Brasil
  • 0

Refresh...


Deividy

Question

como eu posso fazer um refresh, eu gostaria de saber se é possivel da seguinte forma:

eu tenho um campo para inserir dados o usuario coloca lá 2 dai quando ele tirar o botão de do campo automaticamente faz um refresh e aparece o resultado do lado

alguém sabe ou ficou muito confuso :(

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Ok.

Então testa isso aqui:

<input type="text" name="campo1" onBlur="preenche(document.all.valor1,this)">

=<span id="valor1"></span><br>

<input type="text" name="campo2" onBlur="preenche(document.all.valor2,this)">

=<span id="valor2"></span><br>

<script>

function preenche(obj,campo)

{

    obj.innerText = campo.value;

}

</script>

B)

Link to comment
Share on other sites

  • 0

Veja se isso te atende:

<input type="text" name="campo1" onBlur="preenche(document.all.valor1,this)">

=<span id="valor1"></span><br>

<input type="text" name="campo2" onBlur="preenche(document.all.valor2,this)">

=<span id="valor2"></span><br>

<script>

function preenche(obj,campo)

{

    var faixas = new Array();

    // Adicione aqui a lista de faixas (minimo,maximo,descricao)

    faixas[1]= new Array(1,5,'Faixa 1-5');

    faixas[2] = new Array(6,10,'Faixa 6-10');

    faixas[3] = new Array(11,15,'Faixa 11-15');

    for(x in faixas)

    {

        if(parseInt(campo.value)>=faixas[x][0] &&

          parseInt(campo.value)<=faixas[x][1])

        {

            obj.innerText = faixas[x][2];

            break

        }

    }

}

</script>

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...