开发者

jquery get the unreapeatable values

开发者 https://www.devze.com 2023-03-31 12:42 出处:网络
i have a array with numbers. i need that array value to be generated once i click on the button, while i click on the button i need to get the value random wise from the array, but the value should no

i have a array with numbers. i need that array value to be generated once i click on the button, while i click on the button i need to get the value random wise from the array, but the value should not be repeated.

ex, if i get a 2 from out of 5, then i should not get the 2 again. for this i wrote this function, but the values are repeating... any idea?

var ar = [0,1,2,3,4,5];
var ran = Math.floor(Math.random()*ar.length);
ar.splice(ran,1);
alert(ar.splice);

the array values should not be removed. because if i click the button aga开发者_如何转开发in, i need to get the values like before.

i did my work like this : but the rand values are repeating, any one can correct this to get unrepeatable values to get?

 $(document).ready(function(){
        var myArray = [1,2,3,4,5];
        var mySize = 5;
        x = 0;
        while(mySize>=1){
            var rand = Math.floor(Math.random()*mySize);
            mySize--;
            alert(rand);
        }

    })


You need your array to be in an outer scope for this like:

(function(){
    var ar = [0,1,2,3,4,5];
    document.getElementById('thebutton').onclick = function(){
        alert(ar.splice(Math.floor(Math.random()*ar.length), 1));
    };
})();

JSFiddle Example

If you create your array inside the onclick function then you are just recreating the entire array every time the button is clicked.


Take a look at this demo. In this it randomizes the array values and will repeat only after all the values are utilized.

Demo

Based on the update in your question here it is take a look.

http://jsfiddle.net/MbkwK/2/


var ar = [0, 1, 2, 3, 4, 5];
document.getElementById('thebutton').onclick = function() {
    var shuffle = [];
    var copyarr = ar.slice(0);
    var arlength = copyarr.length;
    for (i = 0; i < arlength; i++) {
        shuffle.push(copyarr.splice(Math.floor(Math.random() * copyarr.length), 1));
    }
    alert(shuffle.join(","));
};

Working demo - http://jsfiddle.net/ipr101/qLSud/1/

0

精彩评论

暂无评论...
验证码 换一张
取 消