您好我有一个复选框,这是一个复选框,这是我尝试将值添加到现有选定值,从现有选定值中删除值,并设置用所选值覆盖所有选定值。我没有从这些尝试得到结果,并希望得到一点指导。谢谢
$('.add_button').click(function() {
selected=$(this).val();
id=$(this).attr('id');
$('#opdots-bach-edit', 'option:selected', this).add();
});
$('.remove_button').click(function() {
selected=$(this).val();
id=$(this).attr('id');
$('#opdots-bach-edit','option:selected', this).remove();
});
$('.set_button').click(function() {
selected=$(this).val();
id=$(this).attr('id');
$('#opdots-bach-edit select.'+id).val(selected);
});
<input type="checkbox" name="employeeid[]" value="1870">
<input type="checkbox" name="employeeid[]" value="1874">
etc etc.
then here are my div buttons
echo '<div class="add_button" value="ssremployeeid[]">add</div>';
echo '<div class="remove_button" value="ssremployeeid[]">remove</div>';
echo '<div class="set_button" value="ssremployeeid[]">set</div>';