Show toolbar

2017年4月18日 星期二

Random Color

標題:Random Color
JavaScript (index.html):
<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』白色,隨機產生顏色。