php / javascript随机数

时间:2015-12-26 15:00:30

标签: javascript php html random

您好我正在使用JavaScript并尝试选择一些随机图像。

我真正想做的事情 我在PHP中有$totalsixes = rand(1,6); 然后让我们选择4然后在JavaScript我想显示4个图像的数字6和2其他白色随机数从1-5

这是我迄今为止所做的尝试:

<?php
$totalsixes = rand(1,6);
?>
<script type="text/javascript">
function shuffle(o){ 
    for(var j, x, i = o.length; i; j = Math.floor(Math.random() * i), x = o[--i], o[i] =     o[j], o[j] = x);
    return o;
};

var imagePaths = shuffle([
    "http://website.com/spill2/terninger/1.gif",
    "http://website.com/spill2/terninger/2.gif",
    "http://website.com/spill2/terninger/3.gif",
    "http://website.com/spill2/terninger/4.gif",
    "http://website.com/spill2/terninger/5.gif",
    "http://website.com/spill2/terninger/6.gif"]);

for(var i = 0; i < imagePaths.length; i++) {
    document.getElementById("randterning" + i).src = imagePaths[i];
}
</script>

正如您在上面看到的那样,$ totalsixes在代码中没有任何意义,因为我不知道如何告诉JavaScript显示六个X($ totalsixes选择了X),还有我我不知道如何让JavaScript为其他骰子选择一个随机数。总共有6个骰子。

希望你很容易理解我的意思,希望你能帮助我。

谢谢,对不起我的英语。

我要制作的示例的屏幕截图: http://prntscr.com/9iqiag

1 个答案:

答案 0 :(得分:2)

<?php $totalsixes = rand(1,6); ?>

<script type="text/javascript">
    function shuffle(o){
        for(var j, x, i = o.length; i; j = Math.floor(Math.random() * i), x = o[--i], o[i] =  o[j], o[j] = x);
        return o;
    }

    var imagePaths = [
        "http://website.com/spill2/terninger/1.gif",
        "http://website.com/spill2/terninger/2.gif",
        "http://website.com/spill2/terninger/3.gif",
        "http://website.com/spill2/terninger/4.gif",
        "http://website.com/spill2/terninger/5.gif",
        "http://website.com/spill2/terninger/6.gif"];

    var images = []; // <- edit here
    for(var x= 0 ; x<6; x++){
         images[x] = x < <?echo $totalsixes?> ?  imagePaths[5] : imagePaths[Math.floor(Math.random() * 5)];
              //^ edit here
    }
    images = shuffle(images);

    for(var i = 0; i < imagePaths.length; i++) {
        document.getElementById("randterning" + i).src = images[i];
    }
</script>

如果我理解正确,结果就是一张带有&#39; rand&#39;六个和所有其他是随机骰子,但六个