当前位置: 编程技术>jquery
jQuery插件生成随机数的例子
来源: 互联网 发布时间:2014-09-03
本文导语: 使用jQuery插件生成随机数,点击按钮即可生成随机数,仅供入门参考。 使用jQuery取得随机数: 代码示例: jQuery生成随机数字-www. ul{list-style:decimal;} ...
使用jQuery插件生成随机数,点击按钮即可生成随机数,仅供入门参考。
使用jQuery取得随机数:
代码示例:
jQuery生成随机数字-www.
ul{list-style:decimal;}
var a = {}, getNum = function(){
var b;
while(true){
b = Math.random().toString().substr(2, 7)/100;
if(b.toString().length === 8 && a[b] === undefined){
return a[b] = b;
}
}
};
$('#Test').on('click', function(){
$('li').each(function(){
$(this).html(getNum());
});
});