废话不多说了额,具体代码如下所示:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> table{width:500px;height:400px;} table td{width:100px;height:50px;} </style> <script> window.onload=function(){ var inps=document.getElementsByTagName('input'); var btn=document.getElementsByTagName("button")[0]; //点击获取table btn.onclick=function(){ var table=document.createElement("table"); var tbody=document.createElement("tbody"); var n=inps[0].value; var m=inps[1].value; for(var i=1;i<=n;i++){ var tr=document.createElement("tr"); //循环时获取颜色值 for(var j=1;j<=m;j++){ var td=document.createElement("td"); tr.appendChild(td); var color="rgb("+parseInt(Math.random()*256)+","+parseInt(Math.random()*256)+"," +parseInt(Math.random()*256)+")"; td.style.backgroundColor=color; } inps[0].value=""; inps[1].value=""; tbody.appendChild(tr); table.appendChild(tbody); document.body.appendChild(table); } }} </script> </head> <body> 行:<input type="text" value=""/> 列:<input type="text" value="" /> <button>获取随机颜色</button> </body> </html>
以上所述是小编给大家介绍的基于JavaScript实现随机颜色输入框,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。