标签:
var tags_a = $("#tags a"); tags_a.each(function(){ var x = 9; var y = 0; var rand = parseInt(Math.random() * (x - y + 1) + y); $(this).addClass("tags"+rand); });
返回0-9直接的随机数
原文地址:http://www.cnblogs.com/zhunandw/p/4942035.html