作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将选中的复选框值推送到一个数组中,但我遇到了一些问题,因为每次我尝试将它添加到数组中时它都保持为空,我可能做错了什么但无法弄清楚什么。
http://jsfiddle.net/fx7su2rp/689/
HTML :
<input name="checkbox" value="1" type="checkbox" />
<input name="checkbox" value="2" type="checkbox" />
<input name="checkbox" value="3" type="checkbox" />
<input name="checkbox" value="4" type="checkbox" />
<button id="button" type="button">button</button>
Jquery :
$(document).ready(function () {
var tmp = [];
$("input").each(function() {
if ($(this).is(':checked')) {
var checked = ($(this).val());
tmp.push(checked);
}
});
$('#button').on('click', function () {
alert(tmp);
});
});
我做错了什么?
最佳答案
您没有调用复选框 change事件。使用这个:
$("input[name='checkbox']").change(function() {
var checked = $(this).val();
if ($(this).is(':checked')) {
tmp.push(checked);
} else {
tmp.splice($.inArray(checked, tmp),1);
}
});
关于javascript - 如何将选中的复选框值推送到数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43962265/
我是一名优秀的程序员,十分优秀!