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)
ボタンは上下ではなく、横に並んでいます。レベルごとに1つのボタンがあるようにしようとしています
_____________
| _________ |
| |_________| |
| _________ |
| |_________| |
|_____________|
それよりも
__________________________
| _________ _________ |
| |_________| |_________| |
|__________________________|
「\r\n」や「 &38」などのエスケープ文字を含む textnode を table_cell に追加しようとしましたが、どれも機能しません。
JSで解決策があれば幸いです