さまざまな権限を持つユーザーのドロップダウンがあります。ユーザーのさまざまな権限は、表示、編集、または削除です。ドロップダウンからユーザーを選択すると、チェックボックスは、ユーザーが持っている権限に応じて更新されます。.prop() と .attr() を使用してみましたが、役に立ちませんでした。http://jsfiddle.net/DWM4r/
HTML
<select class='select210'>
<option class='user1'>wjazi@deloitte.com</option>
<option class='user2'>aschwem@company.com</option>
<option class='user3'>tcooksnow@usa.com</option>
</select>
<input type='checkbox' checked class='viewChk' />View
<input type='checkbox' checked class='editChk' />Edit
<input type='checkbox' checked class='delChk' />Delete
jQuery
$('.user3').click(function() {
$('.viewChk').attr('checked', true);
$('.editChk').attr('checked', false);
$('.delChk').attr('checked', false);
});
$('.user2').click(function() {
$('.viewChk').prop('checked', true);
$('.editChk').prop('checked', true);
$('.delChk').prop('checked', false);
});
$('.user1').click(function() {
$('.viewChk').prop('checked', true);
$('.editChk').prop('checked', true);
$('.delChk').prop('checked', true);
});