最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

else if in javascript - Stack Overflow

programmeradmin1浏览0评论

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?

Share Improve this question edited Dec 6, 2012 at 13:43 Matt 75.3k26 gold badges156 silver badges180 bronze badges asked Dec 6, 2012 at 9:49 ruslyrusly 1,5226 gold badges29 silver badges62 bronze badges 1
  • 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
Add a ment  | 

2 Answers 2

Reset to default 7

It 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.

发布评论

评论列表(0)

  1. 暂无评论