0
你好我正在一個迷你項目,將添加對象到一個數組,並將其顯示在HTML中的表。使用複選框更新對象值,並提交按鈕
我有每個行/對象的單選按鈕。如果選中複選框,我想更新我的密鑰的值。
<div class="container">
<input id="list-input" />
<select id="select-status">
<option value="on-going">on-going</option>
<option value="completed">completed</option>
</select>
<button id="add">Add To List</button>
<button id="update">Mark as Complete</button>
</div>
<div class="container">
<h1>Your List</h1>
<div>
<table id="mylist">
<thead>
<th>ID Number</th>
<th>Description</th>
<th>Status</th>
</thead>
<tbody>
</tbody>
</table>
</div>
<button id="clear">clear</button>
</div>
我想紀念地位SA都在我的陣列和在我的HTML完整。 會真的感謝上面的幫助
感謝你洙多先生 – Jorge
如果這有助於只要勾選答案接受:http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work –