MVC - 单击单选按钮后的回发
我对 MVC 还很陌生。我有一个简单的问题。我的 mvc asp.net 页面上有 3 个单选按钮。当我检查页面上的单选按钮之一时,我想在控制器中调用一个操作。如何在 mvc 中进行回发?
I am fairly new to MVC. I have a simple problem. I have 3 radio buttons on my mvc asp.net page. I would like to call an action in my controller when I check one of the radio buttons on the page. How do I do a postback in mvc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有如下单选按钮:
您可以在页面上添加脚本(假设您可以使用 jQuery),例如:
假设您在与生成视图的控制器相同的控制器中有一个操作方法:
If you had radio buttons like:
You could add script (assuming you can use jQuery) on the page like:
Assuming you have an action method in the same controller as the one that generated your view:
上面的答案仅在我
这样做时才对我有用,即当我将 ':checked' 添加到选择器时。
The answer above only worked for me when I did
That is, when I added ':checked' to the selector.