如何在select标签中获取复选框,并且在选择
时我还需要获取选择框的值我正在使用ajax将数据附加到选择框
success: function(data)
{
var toAppend = '';
$.each(JSON.parse(data),function(i,o)
{
toAppend += '<option value='+o.invoice_id+'>'+ o.invoice_number+'</option>';
});
$('#client_invoices').append(toAppend);
}
//html
<select name="" id="client_invoices" class="form-control simple-select">
</select>
有人可以帮我吗