微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用jQuery获取多个复选框的值并以逗号分隔的字符串形式输出.

我有很多复选框如下,
<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>

如何使用jQuery获取检查值并输出为areaofinterest =“home_coo,home_mar,home_pet”?

非常感谢.

解决方法

使用 .map()功能
$('.CheckBox:checked').map(function() {return this.value;}).get().join(',')

打破这个:

$(‘.复选框:选中’)选中选中的复选框.

.map(function(){return this.value;})创建一个jQuery对象,该对象包含一个包含所选复选框的值的数组.

.get()返回实际的数组.

.加入(‘,’);将数组的所有元素连接到一个由逗号分隔的字符串中.

Working DEMO

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐