JS---Math.Random()*10--[0,10)随机变颜色
Posted Andy&
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS---Math.Random()*10--[0,10)随机变颜色相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>随机显示颜色</title> <style> #div1{ width: 100px; height: 100px; } </style> </head> <body onload="change()"> <div id="div1"></div> </body> <script> function change(){ var i=Math.random()*10; var div1=document.getElementById("div1"); if(0<i<4){ div1.style.backgroundColor="red"; } if(4<=i&&i<7){ div1.style.backgroundColor="yellow"; } if(7<=i&&i<10){ div1.style.backgroundColor="green"; } } </script> </html>
以上是关于JS---Math.Random()*10--[0,10)随机变颜色的主要内容,如果未能解决你的问题,请参考以下文章