???单击复选框后@Model.checkItem的值应能更新,但确不能???
在服务器上 ActionResult 你的方法(FormCollection fc) { fc["checkItem"] } 或者 ActionResult 你的方法(你的模型 model) { UpdateModel(); //这个不写不会更新 model.checkItem }
谢谢。但我怀疑"value=@Model.checkItem"是这种写法有问题。