【JavaScript】JS 生成随机的十六进制颜色

const color = '#' + Math.floor(Math.random() * 0xffffff).toString(16)

你可能感兴趣的:(javascript,前端,开发语言,ecmascript)