を通過したチェックボックスがチェックされている場合は、その後、私はその値を取得する必要があるとは、アクションの結果に例えば
$(document).ready(function() {$('input:submit').click(function() {
var allVals = [];
debugger;
$('input[type="checkbox"]:checked').each(function() {
allVals.push($(this).val());
});
$.ajax({
type: 'post',
dataType: 'json',
cache: false,
url: '/Home/ApplyWithdraw',
traditional: true,
contentType: "application/json; charset=utf-8",
data: { 'ids': 'allVals' },
success: function (data) {
return data;
},
});
});
をコントローラに渡されていませんHomeControllerページ
public ActionResult ApplyWithdraw(int[] ids)
{
}
助けてくれてありがとう – RAKESH