Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用以下链接中回答的代码 如何在分页时保留 mvc3 webgrid 中的复选框值
但是我得到一个如下所示的异常,如果我选中一个复选框,它永远不会调用控制器的选择方法,请建议我如何执行,因为我是 mvc 新手。
您在三元运算符中有语法错误
data: {isChecked: $(this).is(':checked') ? id : $(this).val()}
或者
data: {isChecked: this.checked ? id : this.value} ^ you have `,` here