您好我正在寻找基于jquery(或javascript)的字限制器?在网上搜索但只有char。限制器
请帮助
非常感谢
答案 0 :(得分:4)
听起来像:
$('input').bind('keydown', function() {
var words = $(this).val().split(/\s/);
if( words.length > 3 ) {
alert('limited to three words');
return false;
}
});