问题描述:
我正在使用淘汰赛,我有一张桌子。在这张表中,我有 3 列。第一列有一个下拉列表。每当用户从下拉列表中选择一个值时,我想生成一个新行。
这是我的小提琴:http: //jsfiddle.net/JPVUk/10/
<table class="table table-bordered">
<thead class="mbhead">
<tr class="mbrow">
<th>Type</th>
<th>Comment</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<select class="input-small">
<option value="">Type</option>
<option value="">One</option>
<option value="">Two</option>
<option value="">Three</option>
</select>
</td>
<td><input class="input-small"/></td>
<td><input class="input-small"/></td>
</tr>
</tbody>
</table>
<button id="saveButton">save</button>`
我想用淘汰赛来完成这个。有没有办法使用淘汰赛来完成它?