1

我正在开发一个 MVC 应用程序,现在我遇到了以下问题:我有一个从我的模型生成的复选框,但是我不知道如何获取所选模型的值(id 的名称) javascript。有任何想法吗 ?

这是代码:

@if (Model.Controls.Any())
       {

           for (int x = 0; x < Model.Controls.Count(); x++)
           {
        <div aria-autocomplete="inline">

            @Html.CheckBoxFor(p => p.Controls[x].IsSelected, new { @class = "CCB" })
            @Html.Label(Model.Controls[x].Name)
            @Html.HiddenFor(p => p.Controls[x].ID)

        </div>
           }

       }

与:

$(document).ready(function () {
    $('.CCB').change(function (event) {
        var matches = [];
        $(".CCB:checked").each(function () {
            matches.push(this.value);
        });
        alert(matches);

    });
});
4

1 回答 1

2

尝试:

$(document).ready(function () {
    $('.CCB').change(function (event) {
        if ($(this).is(':checked'))
        {
            var theId = $(this).attr('id'); // The id of the checkbox
            var theValue = $(this).val(); // The value field of the checkbox
        }
    });
});

另请参阅如何获取 checkboxlist 当前选定的项目值

于 2013-07-22T10:24:25.757 回答