Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/10/2016, 11:07
alvaro_trewhela
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: ¿por que no funciona el formato rgb en este codigo?

Extraño a mi me funciona, usé este código para verificar

Código HTML:
Ver original
  1.  
  2.     <script type="text/javascript">
  3.     function rand(){
  4.     return Math.round(Math.random()*255);
  5.     }
  6.  
  7.     function changeColor(){
  8.     var red = rand();
  9.     var green = rand();
  10.     var blue = rand();
  11.     document.getElementById("tester").innerHTML = red+","+green+","+blue;
  12.     var el = document.getElementById("test").style.backgroundColor='rgb('+red+','+green+','+blue+')';
  13.     }  
  14.     </script>
  15. </head>
  16. <div id="test" style="width:300px;height:300px;" onclick="changeColor();">Element</div><br />
  17. <span id="tester"></span>
  18.  
  19. </body>
  20. </html>

Y este fue el resultado: