js随机生成颜色的方法时间:2025-05-12 10:35:50 function getRandomColor() { return '#' + (Math.random() * 0xffffff << 0).toString(16); }