admin管理员组文章数量:1345438
I'm trying to calculate a string based on user input and show some message:
$('#myInput').keyup(function() {
if(this.value.length<=158)
$('#charCount').text('We will deduct 1 credit from your account');
else if(this.value.length>158 || this.value.length<316)
$('#charCount').text('We will deduct 2 credit from your account');
else if(this.value.length>316 || this.value.length<400)
$('#charCount').text('We will deduct 3 credit from your account');
});
/
The problem is the last else if
is not working... Have I missed something?
I'm trying to calculate a string based on user input and show some message:
$('#myInput').keyup(function() {
if(this.value.length<=158)
$('#charCount').text('We will deduct 1 credit from your account');
else if(this.value.length>158 || this.value.length<316)
$('#charCount').text('We will deduct 2 credit from your account');
else if(this.value.length>316 || this.value.length<400)
$('#charCount').text('We will deduct 3 credit from your account');
});
http://jsfiddle/p9jVB/11/
The problem is the last else if
is not working... Have I missed something?
-
3
Other problem is that if you have a text which length's 316 it won't enter in any
if
statement. – Ricardo Lohmann Commented Dec 6, 2012 at 9:52
2 Answers
Reset to default 7It looks like you mean &&, not ||
$('#myInput').keyup(function() {
if(this.value.length<=158)
$('#charCount').text('We will deduct 1 credit from your account');
else if(this.value.length>158 && this.value.length<=316)
$('#charCount').text('We will deduct 2 credit from your account');
else if(this.value.length>316 && this.value.length<400)
$('#charCount').text('We will deduct 3 credit from your account');
});
else if(this.value.length>158 || this.value.length<316) $('#charCount').text('We will deduct 2 credit from your account'); else if(this.value.length>316 || this.value.length<400) $('#charCount').text('We will deduct 3 credit from your account');
Every number in the world is greater than 158 or less than 316, so the alternative condition will never be reached.
本文标签: else if in javascriptStack Overflow
版权声明:本文标题:else if in javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743804497a2541924.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论