JavaScript (index.html):
1 2 3 4 5 6 7 8 9 | <button onclick= "getRandomColor(this)" >Change Color</button> <script> function getRandomColor(e) { var color = '#' + Math.floor(Math.random()*16777215).toString(16); console.log(color); e.innerHTML = color; e.style.color = color; } </script> |
範例:
說明:
透過『16777215』白色,隨機產生顏色。