gpt4 book ai didi

html - 如何制作一个装满数字的盒子?

转载 作者:行者123 更新时间:2023-11-28 17:17:25 37 4
gpt4 key购买 nike

假设我有这个号码 445758,我希望每个号码都像这样在盒子里 enter image description here

如何实现?

最佳答案

//conver the number to a string
var num_string=String(445758);
//loop through each character in the string and insert it into a
//div which will be inserted into the document.
for(var x=0;x<num_string.length;++x){
var box=document.createElement("div");
box.className="box";
box.innerHTML=num_string[x]
document.getElementsByClassName("code")[0].appendChild(box);

}
.box{
display:inline-block;
padding:10px;
background:linear-gradient(yellow,white);
margin-right:5px;
margin-left:5px;
}
<div class="code"></div>

关于html - 如何制作一个装满数字的盒子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43359134/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com