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.
这是我创建复选框的方式:
@Html.CheckBoxFor(model => model.IsFinal, new { @readonly = "true", id = "chkFinal" })
我不想让它只读了,而是隐藏了。我该怎么办?
太好了,它的 MVC 我想知道你想在某个事件上隐藏这个复选框,或者只是想把它作为隐藏字段,或者你想要复选框,但它不应该在页面上可见,让我知道我可以帮助你
如果你想作为隐藏字段使用
@html.hiddenfor(model => model.isfinal)
如果您想在某些事件后将此框更改为隐藏页面,您可以使用 javascript
$('#isfinal').css("display","none");
如果你觉得这个有用的投票它..