ID #posttext のテキストエリアで値を取得し、関数を呼び出して何かを投稿する次の関数があります。
ユーザーが複数の改行を続けて入力できるようにしたくありません。どうすればそれを防ぐことができますか?
コードは次のとおりです。
//Post something
$('#postDiv').on('keydown', '#posttext', function(e) {
if (e.which==13 && !e.shiftKey && $('#posttext').val()!=' Post something...') {
//This is what I tried to prevent a user from inserting more than one br in a row
var last = false;
var code = (e.keyCode ? e.keyCode : e.which);
if(code == 13) {
if (last) { e.preventDefault(); }
last=true;
}else{
last=false;
}
//If not currently loading and enough text typed in, submit
if($('#imageFeedback').html()!=' | Loading...' && $('#posttext').val().length>15){
//Say that it is loading
$('#imageFeedback').css('color','black').css('font-weight','normal').html(' | Loading...');
//Call function to post
post($(this));
return false;
}
}
});