Jump to content
Fórum Script Brasil
  • 0

Conteúdo de variável javascript para variável HTML


Ricardo Fabrízio

Question

2 answers to this question

Recommended Posts

  • 0
Acabo de descobrir que também sou leigo... o que seria uma variável html?

kkkkkkkkkkkkkkkkkkkkkkkkk...

Bom, mas falando sério agora, se entendi bem, a sua 'variável HTML' seria por exemplo, um componente de formulário.

Então, segue abaixo, UMA das formas de se fazer isso, existem outras, mas acredito que essa seja a mais fácil:

<html>
<head>
<title>Variáveis</title>
<script language="JavaScript">
    var nome = 'Ricardo Portolan';
    function inserirNome() {
        document.formulario.nome.value = nome;
    }
</script>
</head>
<body>
<form name="formulario">
    <input type="nome" name="nome" />
    <input type="button" name="botao" value="botao" onClick="inserirNome()" />
</form>
</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...