Jump to content
Fórum Script Brasil
  • 0

Calculo para Quantidade de Blocos


Luiz Antonio

Question

Bom dia pessoal...

preciso de uma ajuda, estou iniciando ainda no javascript e gostaria de uma informação.

Fiz um formulario para calculo de quantidade de blocos em uma obra, toda a formula já esta certa, porem quando eu clico no botao OK, aparece o resultado em um alert, porem gostaria que o resultado apareça no campo input "resultado", alguém pode me ajudar?

Segue o codigo javascript e o form com os campos:

<script language="javascript">
function checa()
{
 //var valor1 = number;
 valor1 = new Number(document.formCalc.campo1.value);
 valor2 = new Number(document.formCalc.campo2.value);
 var resultado = new Number(valor1 * valor2 * 13.5);
 alert ('resultado = ' + resultado);

}
</script>

<form name="formCalc">
Altura:<br />
<input type="text" name="campo1" size="20"><BR>
<br />
Largura:<br />
<input type="text" name="campo2" size="20">
<br />
<br />
Resultado:<br />
<label>
  <input name="resultado" type="text" id="resultado" size="20" />
</label>
<BR>

<br />
<input type="button" value="ok" onClick="checa()">
</form>

Obrigado!

Edited by fercosmig
add tags
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title></title>
    </head>
    <body>
        <form method="post" action="">
            <input id="foo" name="foo" type="text" />
        </form>
        <script>
        document.getElementById('foo').value = 'Valor';
        </script>
    </body>
</html>

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