Getting Checkbox Values in jQuery
890 ワード
Getting Checkbox Values in jQuery
です.英語の思考を鍛えて、どのように英語で検索するかを知っています.
$(document).ready(function () {
$("#btnSubmit").click(function () {
// 2.1 id
var selectedAttrGroup = new Array();
$('input[name="ids[]"]:checked').each(function () {
selectedAttrGroup.push(this.value);
});
});
});
細部はくどくどしないで、主に体得にあります.