作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我想遍历复选框组“locationthemes”并构建一个包含所有选定值的字符串。因此,当复选框 2 和 4 被选中时,结果将是:“3,8”
<input type="checkbox" name="locationthemes" id="checkbox-1" value="2" class="custom" />
<label for="checkbox-1">Castle</label>
<input type="checkbox" name="locationthemes" id="checkbox-2" value="3" class="custom" />
<label for="checkbox-2">Barn</label>
<input type="checkbox" name="locationthemes" id="checkbox-3" value="5" class="custom" />
<label for="checkbox-3">Restaurant</label>
<input type="checkbox" name="locationthemes" id="checkbox-4" value="8" class="custom" />
<label for="checkbox-4">Bar</label>
我在这里查看:http://api.jquery.com/checked-selector/但没有示例如何按名称选择复选框组。
我该怎么做?
最佳答案
在 jQuery 中只需使用属性选择器,如
$('input[name="locationthemes"]:checked');
选择名称为“locationthemes”的所有选中输入
console.log($('input[name="locationthemes"]:checked').serialize());
//or
$('input[name="locationthemes"]:checked').each(function() {
console.log(this.value);
});
在 VanillaJS
[].forEach.call(document.querySelectorAll('input[name="locationthemes"]:checked'), function(cb) {
console.log(cb.value);
});
在 ES6/展开运算符中
[...document.querySelectorAll('input[name="locationthemes"]:checked')]
.forEach((cb) => console.log(cb.value));
关于javascript - 使用 jQuery 获取选中复选框的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11292778/
我是一名优秀的程序员,十分优秀!