1个回答
展开全部
你这写的也太复杂了吧
function createCode() {
var code = "#",
codeLength = 6,//颜色代码长度
selectChar = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9,'a','b','c','d','e','f');
for (var i = 0; i < codeLength; i++) {
var charIndex = Math.floor(Math.random() * selectChar.length);
code += selectChar[charIndex];
}
return code;
}
$("body").css("background-color",createCode())
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询