$('textarea').keydown(function(){ $(this).remove_new_lines(); });
谢谢!
编辑:
它会像以下那样粗糙还是有更好的方法?
function removeNL(s){ return s.replace(/[\n\r\t]/g,); } $('textarea').keydown(function(){ $(this).val(removeNL($(this).val)); });
$('textarea').on('keyup',function(){ $(this).val($(this).val().replace(/[\r\n\v]+/g,'')); });