ユーザーがテキストフィールドに1行に複数の改行を挿入しないようにするにはどうすればよいですか?私はjQueryを使用したソリューションを好みます。
更新1:
次のようなanadeoのコードをコードに挿入しました。残念ながら、それは機能しません-それでも、textarea#posttextで1行に複数の改行を許可します。誰もがこれを修正する方法を知っていますか?ありがとう :)
//Post something
$('#postDiv').on('keydown', '#posttext', function(e) {
if (e.which==13 && !e.shiftKey && $('#posttext').val()!=' Post something...') {
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;
}
}
});