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>
私は、アレイ内の、私のHTMLの両方で完全な状態のSAをマークしたかったです。 上記のヘルプに本当に感謝します
はあなた洙多くの先生 – Jorge
に感謝:http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work –