当前位置: 代码迷 >> Web前端 >> 随机色彩相关
  详细解决方案

随机色彩相关

热度:321   发布时间:2013-07-16 22:38:05.0
随机颜色相关

?

?1 产生随机颜色

?

	var getRandomColor = function(){
	??return? '#' +
	????(function(color){
	????return (color +=? '0123456789abcdef'[Math.floor(Math.random()*16)])
	??????&& (color.length == 6) ?? color : arguments.callee(color);
	??})('');
	}
		
	document.write( "<div style='color:"+  getRandomColor() +"'>222222</div>"        );

?

?

?

?

?

?

?

?

?

?

?

?

  相关解决方案