js给标签设置随机背景

js给标签设置随机背景

function bac(){
	 var gba = "rgb(" + Math.floor(Math.random() * 255) + ',' + Math.floor(Math.random() * 255) + ',' + Math.floor(Math.random() * 255) + ')'
     return gba
};
 document.getElementsByTagName('div')[0].style.backgroundColor = bgc();
  function getRandom(min, max) {
      return Math.floor(Math.random() * (max - min + 1)) + min;
  }
  
  function getRandomColor() {
      return 'rgb(' + getRandom(0, 255) + ',' + getRandom(0, 255) + ',' + getRandom(0, 255) + ')'
  }
  document.body.style.backgroundColor = getRandomColor();

你可能感兴趣的:(js)