我创建了 2 个表单,我正在尝试获取所有数据以及其中的所有数据并将它们发送到一个简单的表格中,但是我希望每个表单只有一个标题,无论输入或打开多少数据它有多少列它将继续添加行而不是像这样的标题:它只有 2 列,但将来可以有 3:
因此,我创建了此代码以使其尽可能通用:
<!DOCTYPE HTML>
<html>
<head>
<script src="js/Jquery.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Test</title>
<style>
html
{
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
background-size:cover;
}
</style>
</head>
<body id="body" class="dark-mode">
<select name="Template_Picker" id="Template_Picker">
<option value="" Disabled selected hidden>Select Template</option>
<option value="payment">payment</option>
<option value="identity">identity</option>
</select>
<br>
<div id="Templates_Pages">
<button class="Template" value="Send" id="Template_Button">Show selected</button>
</div>
<div class="vl"></div>
<form action="test/submit.php" method="post" id="submit_template">
<center id="output">
</center>
</form>
</body>
<script src="test/template.js"></script>
</html>
繁花如伊