如何防止用户在一行中插入多个换行符到文本字段中?我更喜欢使用 jQuery 的解决方案。
更新 1:
我已将 anadeo 的代码插入到我的代码中,如下所示。不幸的是,它不起作用 - 它仍然允许在 textarea #posttext 中连续出现多个换行符。有人知道怎么修这个东西吗?谢谢 :)
//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;
}
}
});