admin管理员组文章数量:1352141
I just have a quick question, im wondering if someone could help me.
I have the following script that someone has written which returns an error if there are no characters in the text field.
I want to modify the script so that it returns an error if there are less than 4 characters, but im not quite sure how.
Current script is as follows:
if(!isString($.trim(iUsername.val()))){ //If username is not correct
iUsername.siblings('.error').text('You must enter a username.');
error = true;
}
I just have a quick question, im wondering if someone could help me.
I have the following script that someone has written which returns an error if there are no characters in the text field.
I want to modify the script so that it returns an error if there are less than 4 characters, but im not quite sure how.
Current script is as follows:
if(!isString($.trim(iUsername.val()))){ //If username is not correct
iUsername.siblings('.error').text('You must enter a username.');
error = true;
}
Share
Improve this question
edited Oct 22, 2011 at 3:55
tekknolagi
11k26 gold badges79 silver badges126 bronze badges
asked Oct 22, 2011 at 3:48
BigJobbiesBigJobbies
4,35312 gold badges46 silver badges51 bronze badges
2
- your title and your post body are contradicting; "larger" vs "less" – tekknolagi Commented Oct 22, 2011 at 3:55
- @BigJobbies see jsfiddle/VvD4s – Ray Toal Commented Oct 22, 2011 at 4:13
1 Answer
Reset to default 9if ($(textId).val().length < 4) { err; }
right? :)
本文标签: javascriptjQueryCheck if a string is larger than 4 charactersStack Overflow
版权声明:本文标题:javascript - jQuery - Check if a string is larger than 4 characters - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743857549a2551132.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论