{
    分享网正式开通,我们为大家提供免费资源,欢迎大家踊跃投稿!

JavaScript随机数的实现方法

利用随机数Math对象下的random方法。

看下面的例子:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
        <title></title>
        <style type="text/css">
                .de{ width:450px; height:450px; border:4px solid #ccc; margin:0 auto; margin-top:50px;}
                .we{ width:450px; height:450px;}
        </style>
        <script type="text/javascript">
                function de() {
                        var we = document.getElementById("we");
                        var img = ["XMJ.jpg", "XMJX.jpg", "psb.jpg"]; //url 链接数组
                        var allNumber = img.length; // 保存img的个数
                        var randomImg = parseInt(allNumber * Math.random()); //Math.random随机数
                        we.setAttribute("src",img[randomImg]);
                }
                window.onload = function () {
                        de();
                }
        </script>
</head>
<body>
        <div class="de">
                <img src="psb.jpg" alt="" title="" class="we" id="we"/>
        </div>
</body>
</html>

 
资源均来自第三方,谨慎下载,前往第三方网站下载


米微资源分享网 , 版权所有丨本站资源仅限于学习研究,严禁从事商业或者非法活动!丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:JavaScript随机数的实现方法
喜欢 ()分享 (0)