我需要一些帮助,如何获取复选框值而不是所选选项。
$(function () {
$('#addAsociado').click(function () {
// This is the selected option, I want checkbox value
return !$('#a_selectCta option:selected').appendTo('#contenedorLista');
});
$('#removeAsociado').click(
function () {
// This is the selected option, I want checkbox value
return !$('#a_selectCta option:selected').remove().appendTo('#contenedorLista');
});
});