0

我有一个像

仅供参考,复选框输入在 foreach 内部,当我尝试使用时, <%Html.CheckboxFor(m => m.Item.Chk) 它给了我一个错误,所以我使用了以下代码。

<input type ="checkbox" id="chk" <% if (Item.Chk != null)%>
                    <% { %>
                        <%= Item.Chk.Value ? "checked" : String.Empty %>
                    <% } %> onclick = "updateChk(<%= Item.ID %>, <%= Item.CartID %>, this.Value);"/>

如果我更改复选框中的值,"on"无论是选中还是未选中,它都会传递this.Value

如何更改复选框中的值并在视图中呈现?

4

0 回答 0