<select name="remaintextarea" id="studentremain" size="10">
<option value="one">One</option>
<option value="two">Two</option>
<option value="three">Three</option>
</select>
<button type='button' id='selectall'>Select All</button>
<button type='button' id='deselectall'>De-Select All</button>
上の選択ボックスを取得し、すべてを選択して、上のすべてのボタンを選択解除します。私の質問はjqueryを使用することです。関連するボタンがクリックされたときに、上の選択ボックスですべてのオプションを選択し、すべてのオプションを選択解除するボタンを取得するにはどうすればよいですか?
以下に、両方のボタンのクリック ハンドラーを示します。
$('#selectall').click(function() {
});
$('#deselectall').click(function() {
});