gpt4 book ai didi

javascript - 表详细信息中的 Bootstrap 下拉列表

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

添加下拉菜单的正确方法是什么?我正在将此信息传递给 JS/PHP,其他一切都正常...我希望更改尽可能少!

    <table id="create">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Start</th>
<th>End</th>
<th>Active</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td><input style="min-width: 180px" class="form-control name" type="text" name="name" placeholder="Contest Name"></td>
<td> BOOTSTRAP DROPDOWN </td>
<td><input class="form-control start" type="date" name="start" placeholder="Start Date (mm/dd/yyyy)"></td>
<td><input class="form-control end" type="date" name="end" placeholder="End Date (mm/dd/yyyy)"></td>
<td><input class="form-control active" type="checkbox" name="active" value="1" CHECKED></td>
<td><input class="btn btn-success create" type="button" name="create" value="Create"></td>
</tr>
</tbody>
</table>

最佳答案

除非我遗漏了一些东西,否则这非常简单 since the documentation is found here 。只需向下滚动到选择部分即可阅读相关内容。在您的表单中添加此代码。

<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>

关于javascript - 表详细信息中的 Bootstrap 下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36701469/

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