标签:
<script>
function randomColor() {
var arr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"];
var color = "#";
for (var i = 0; i < 6; i++) {
color += arr[Math.floor(Math.random() * arr.length)];
}
return color;
}
console.log(randomColor());
</script>
标签:
原文地址:http://www.cnblogs.com/mouse2417/p/5167149.html