将Random.org数据解析为JS中的int

时间:2013-02-07 05:04:27

标签: javascript html

我有a little web app我用来测试CSS动画。我有它的工作,但我想要更真实的随机性,所以我试图从Random.org画画。 如何将the result from Random.org带入JavaScript变量并将其用作int?

2 个答案:

答案 0 :(得分:2)

您使用$.ajax加载网站,然后parseInt(x)并将其传递给函数以处理随机性。

例如:

$.ajax({
    "type": "GET",
    "url": "http://www.random.org/integers/?num=1&min=1&max=6&col=1&base=10&format=plain&rnd=new",
    "success": function( data, status, xhr ){
         send_the_number_to_a_handler( parseInt( data ) );
    }
});

答案 1 :(得分:0)

什么??,你可以使用JavaScript生成随机数本身!!

function getRandomInt(min, max){
    return Math.floor(Math.random() * (max - min + 1)) + min;
}

除非有特定需要连接到该网站,我无法猜测

其次, 要理解这一点,我查看了你的代码,发现它的方式与我的朋友desandro的DEMO 3dtransforms

太相似了