私のチャットアプリケーションプロジェクトでは、ユーザーが押した直後にスペースを制限しようとしていSpaceますEnter。を押すEnterと、入力されたテキストがに表示されますdiv
。明確に理解するには、コード内のコメントを参照してください。
#txtmsg --> ID of TextBox field
$('#txtmsg').keypress(function (e)
{
if (e.which == 13)
{
//Disable default function of Enter key
e.preventDefault();
//Checks whether the user has entered any value or not
if ($('#txtmsg').val().length > 0)
{
//if(user has not entered only spaces....)?
//transfers the entered value in the text field to div
chat.server.send($('#txtmsg').val());
$('#txtmsg').val('');
}
}
});