web-dev-qa-db-fra.com

Utilisation de jQuery pour obtenir la valeur de plusieurs cases à cocher et la sortie sous forme de chaîne séparée par des virgules.

J'ai beaucoup de cases à cocher comme ci-dessous, 

<li><input type="checkbox" name="areaofinterest" value="home_coo" id="home_coo" class="Checkbox" > Cooking</li>
    <li><input type="checkbox" name="areaofinterest" value="home_cra" id="home_cra" class="Checkbox"> Crafts</li>
    <li><input type="checkbox" name="areaofinterest" value="home_dec" id="home_dec" class="Checkbox"> Decorating</li>
    <li><input type="checkbox" name="areaofinterest" value="home_ent" id="home_ent" class="Checkbox"> Entertaining</li>
    <li><input type="checkbox" name="areaofinterest" value="home_gar" id="home_gar" class="Checkbox"> Gardening</li>
    <li><input type="checkbox" name="areaofinterest" value="home_hom" id="home_hom" class="Checkbox"> Home Improvement</li>
    <li><input type="checkbox" name="areaofinterest" value="home_mar" id="home_mar" class="Checkbox"> Marriage</li>
    <li><input type="checkbox" name="areaofinterest" value="home_par" id="home_par" class="Checkbox"> Parenting</li>
    <li><input type="checkbox" name="areaofinterest" value="home_pet" id="home_pet" class="Checkbox" > Pets</li>
    <li><input type="checkbox" name="areaofinterest" value="home_ret" id="home_ret" class="Checkbox"> Retirement</li>

Comment utiliser jQuery pour obtenir les valeurs vérifiées et la sortie sous la forme areaofinterest = "home_coo, home_mar, home_pet"? 

Merci beaucoup.

24
Frank

Utilisez la fonction .map() :

$('.Checkbox:checked').map(function() {return this.value;}).get().join(',')

Décomposer cela:

$('.Checkbox:checked') sélectionne les cases à cocher.

.map(function() {return this.value;}) crée un objet jQuery qui contient un tableau contenant les valeurs des cases à cocher cochées.

.get() renvoie le tableau actuel.

.join(','); relie tous les éléments du tableau en une chaîne, séparée par une virgule.

Working DEMO

101
Anthony Grist
var areaofinterest = '';

$('[name="areaofinterest"]')​.each(function(i,e) {
    var comma = areaofinterest.length===0?'':',';
    areaofinterest += (comma+e.value);
})​;

Pour obtenir uniquement les valeurs des cases cochées:

var areaofinterest = '';

$('[name="areaofinterest"]')​.each(function(i,e) {
    if ($(e).is(':checked')) {
        var comma = areaofinterest.length===0?'':',';
        areaofinterest += (comma+e.value);
    }
})​;

VIOLON

Vous pouvez aussi faire:

var areaofinterest = [];
$('[name="areaofinterest"]:checked').each(function(i,e) {
    areaofinterest.Push(e.value);
});

areaofinterest = areaofinterest.join(',');

Et il y a probablement beaucoup d'autres moyens de le faire?

3
adeneo
var values = "";
$("checkbox[name=areaofinterest]").each(function() { 
    values += $(this).val() + ",";
});

values = values.substring(0, values.length - 2);
0
ŁukaszW.pl

Essayez quelque chose comme ça:

var areaofinterest= "";

$("input[type=\"checkbox\"]").each(function() {
    if ($(this).attr("checked")) {
        if (areaofinterest !== "") areaofinterest += ",";

        areaofinterest += $(this).value();
    }
});
0
Paul Aldred-Bann

Ou vous utilisez peut faire en utilisant tableau comme indiqué ci-dessous

 var checkBoxArray = new Array();
 var areaofinterest = '';

 $(':checkbox:checked').each(function(i){
        checkBoxArray .Push($(this).attr("value"));

});

  if (checkBoxArray .length == 0) {
     } else {
     while (checkBoxArray .length != 0) {
            if (checkBoxArray .length == 1) {
                areaofinterest += checkBoxArray .pop();
            } else {
                areaofinterest += (checkBoxArray .pop() + ",");
                 }
            }
}
console.log(areaofinterest);

bien que vous obtiendrez String dans l'ordre inverse.

0
Anurag