$(function(){
var tags = $(".tag");
tags.each(function(){
var r = Math.floor(Math.random()*255);
var g = Math.floor(Math.random()*255);
var b = Math.floor(Math.random()*255);
$(this).css("background-color","rgb(" + r +"," + g +"," + b + ")");
})
})
时间: 2024-12-11 02:02:00