gpt4 book ai didi

javascript - 表格单元格中每行一个按钮

转载 作者:行者123 更新时间:2023-11-29 22:15:50 24 4
gpt4 key购买 nike

我正在尝试使用 JavaScript 将 2 个按钮放入表格单元格中

我有这样的东西:

var table_cell = document.getElementById("table_cell")
var button_A = document.createElement("input")
button_A.setAttribute("value","BUTTON A")
button_A.setAttribute("type","button")
var button_B = document.createElement("input")
button_B.setAttribute("value","BUTTON A")
button_B.setAttribute("type","button")
table_cell.appendChild(button_A)
table_cell.appendChild(button_B)

按钮并排排列,而不是一上一下。我正在努力做到每一层都有一个按钮

 _____________   
| _________ |
| |_________| |
| _________ |
| |_________| |
|_____________|

而不是

 __________________________
| _________ _________ |
| |_________| |_________| |
|__________________________|

我曾尝试将文本节点附加到包含转义字符(如“\r\n”和“ &38”)的 table_cell,但均无效。

如果有JS的解决方案,我将不胜感激

最佳答案

使用 <br> 怎么样?按钮之间的标记

table_cell.appendChild(button_A);
table_cell.appendChild(document.createElement('br'));
table_cell.appendChild(button_B);

关于javascript - 表格单元格中每行一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15234702/

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