これが私のJsFiddleです
フォームに入力して追加ボタンをクリックした後、フォームデータをテーブル内に表示したい。誰かが私を助けてくれますか?
<div class="form-div">
<form class="form-inline">
<fieldset>
<legend>Item Details</legend>
<label>Enter Item Name</label>
<input type="text" placeholder="Item Name">
<label>Quantity</label>
<select class="input-mini">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<button class="btn">Add Data</button>
</fieldset>
</form>
</div>
<div class="table-div">
<table class="table">
<thead>
<tr>
<th> S.no </th>
<th> Item Name </th>
<th> Quantity </th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>