Asp.net MVC 选择索引已更改/Ajax.ActionLink
我在 Asp.Net MVC 中有一个使用 Razor 语法的页面。在页面中,我有一个 DropDownList 和一个 DIV 部分,我想根据使用 Ajax.ActionLink 功能的组合框的选定值来替换 DIV 中的内容
有没有办法做到这一点?
谢谢马克
I have a page in Asp.Net MVC using the Razor syntax. In the page I have a DropDownList, and a DIV section that I would like to replace the content in the DIV depending on the selected value of the combobox using the Ajax.ActionLink functionality
Is there a way to do this?
Thanks
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我宁愿使用表单而不是链接,因为它更适合您想要实现的目标:
以及相应的控制器操作:
I would rather use a form than a link as it is more adapted to what you are trying to achieve:
And the corresponding controller action:
你可以使用jquery来调用你的ajax动作
mvc ajax动作会喜欢这样
you can use jquery to call your ajax action
mvc ajax action will like that