をクリアして、私は次のコードを持っている:はJavascriptがキーを押すと入力しに提出されていない、それだけでテキストボックス
<form style="position: absolute; bottom: 5px; padding-bottom: 10px;height: 10%;" id="newmessageForm">
<textarea name="message" placeholder="Type your message here" rows="9" cols="225" id="newmessage" resize="none" style="float: left; opacity: 0.7;"></textarea>
<input class="btn-login" type="Submit" name="send" style="float: left">
</form>
<script>
var chatInput = document.getElementById('newmessage');
var chatForm = document.getElementById('newmessageForm');
chatInput.onkeypress = function(e) {
if (e.charCode == 13) {
e.preventDefault();
chatForm.submit();
}
};
</script>
を、代わりにキーを押すと入力した上でメッセージを送信するのでは、それだけでテキストボックスをクリアし、誰かしてくださいすることができます助けて?
、ちょうど –