运行代码 缩小
汉王
HTML代码
复制 格式化 注释 注释 清空
放大
AخA
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
<head>
4
<title>jquery多组随机数生成代码</title>
5
<style>ul{list-style:decimal;}</style>
6
<script src="http://code.jquery.com/jquery-latest.js"></script>
7
</head>
8
<body>
9
    <input type="button" value="Test" id="Test" />
10
    <script>
11
        var a = {};
12
        $('#Test').on('click', function(){
13
            $('<ul>' + new Array(8).join(' ').replace(/ /g, function(){var b; while(true){b = Math.random().toString().substr(2, 7)/100; if(b.toString().length === 8 && a[b] === undefined){return '<li>' + (a[b] = b) + '</li>';}}}) + '</ul>').appendTo('body');
14
        });
15
    </script>
16
</body>
17
</html>
CSS代码
复制 格式化 注释 注释 颜色 清空
放大
CSS代码...
x
 
1
JS代码
复制 格式化 注释 注释 清空
放大
JS代码...
xxxxxxxxxx
1
 
1
名称
jQuery多组随机数生成代码
分类
网站常用
描述
超简单的jquery随机数生成代码,每点击一次按钮,即可生成一组随机数,这里的组内有7个随机数串,至于多少个是您需要的,你可以修改代码,这个代码也是超简单的。
收藏