使用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

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...