Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Reação a eventos


Fernando Sousa

Question

Olá, a todos!

Eu estou tentando fazer um chat e logo no começo surgiu um problema:

como reagir ao teclar a tecla enter?

Vejam meu código e percebam meu problema:

<html>
<head>
&lt;script>
function escreve(str){
document.getElementById("campo").innerHTML="<br/>"+str
}</script>
<style>
textarea{overflow:hidden;
line-height: 17px;}]
</style>
</head>
<body>
<form>
Escreva e click em enter: <textarea type="texto" onkeypress="escreve(this.value)"></textarea>
</form>
<p id="campo"></p>

Quero fazer como no hotmail,no box onde dá pra conversar diretamente do e-mail.

Gostaria apenas que o script escrevesse no <p id="campo"> somente quando fosse pressionado o enter(no caso com o ("onkeypress") isso acontece quando uma tecla é pressionada.

Obrigado.

Edited by Fernando Sousa
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
Pode usar "event".

Ex.:

<html>
<head>

function identificarEnter(e){
   if( e.keyCode == 13 )
     alert("Você pressionou a tecla Enter!");
}

</head>
<body onkeypress="identificarEnter(event);">
</body>
</html>

Valeu a ajuda mano.Obrigado.

Edited by Fernando Sousa
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...