function getRandomColor(){
return '#' + Math.random().toString(16).substring(2,8).padEnd(6,'0')
}
function getRandomString(len){//一般最多11位随机字符串
return Math.random().toString(36).slice(2,2+len).padEnd(len,'0')
}
//如果随机字符串超过11位
function getRandomString(len){//一般最多11位随机字符串
return Math.random().toString(36).slice(2,2+len).padEnd(len,'0') :getRandomString(11) + getRandomString(len - 11)
}