gpt4 book ai didi

javascript - 如何从拖动选项表创建表

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

我正在尝试根据从下拉框中做出的选择来显示表格。该表格将有两列,表格的选定值将是表格的行数以及标题的附加行表数

<html>
<body>

<select name="dropdown" size="1">
<option selected value="">Please make a selection</option>
<option value="10">Choice 10</option>
<option value="8">Choice 8</option>
<option value="4">Choice 4</option>

</select>

<!--i.e. if Choice 4 is selected I'd like to display a new <tr> with the
following: -->

<tr>
<th> Flat No.</th>
<th> Floor No.</th>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</body>
</html>

提交后,表的值将保存在数据库中。我只想通过使用 javascript 和 html 来做到这一点,但我无法实现我正在寻找的东西。

最佳答案

只要导航到特定行(使用 .selectedIndex),您就可以添加一个 eventlistener,然后在该 function 中,您可以 appendChild(row) 到您要在其后追加该行的特定表。

关于javascript - 如何从拖动选项表创建表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58613367/

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