How to make “Enter” key in a textarea submit a form

前端 未结 6 905
太阳男子
太阳男子 2020-12-16 08:49

I have a chat that uses textarea instead of text for obvious reasons. This is why each time members hit ENTER they get a new line instead of sending the message. I would li

6条回答
  •  清酒与你
    2020-12-16 09:33

    function KP()
    {    
    var x = event.keyCode;
       if(x==13)
            {
                // alert (x);
                document.message.submit();
            }
    }
    

    php

    echo '';
    

提交回复
热议问题