Random slogan generator with using javascript's switch

前端 未结 3 1968
一生所求
一生所求 2021-01-07 14:46

I have got little problem. I\'m learning javascript and I wanted to create random slogan generator for my site with using switch.

So I created this html

3条回答
  •  独厮守ぢ
    2021-01-07 15:17

    You left part of the code outside the rndqu() function. I forked and corrected your fiddle here: http://jsfiddle.net/BwJ7s/

    Here's the corrected JS code:

    var qu;
    var slogan;
    function rndqu(n)
    {
        var random = function(min, max) {
        return Math.floor(Math.random() * (max - min + 1)) + min;
        };  
        qu = random(1, 3);
    
        switch(qu){
            case 1:
                slogan = "Here is the 1";
                break;
            case 2:
                slogan = "Here is the 2";
                break;
            case 3:
                slogan = "Woah";
                break;
            default:
                slogan = "Really?";
        }
        document.getElementById("quote").innerHTML = slogan;
    }
    

提交回复
热议问题