使用 jquery 将列表从列表框传递到 mvc 控制器
我想知道如何通过 jquery 在 MVC 方法中传递包含值的列表。我有一个 jquery UI 对话框,其中记录粘贴在每一行中。一旦用户单击提交按钮,我想要一个 jquery 它将弹出的多行文本框中的值发布到该方法。 这可能吗? 提前致谢,拉齐亚莱
I would like to know how I can pass a list with values in MVC method via jquery. I have a jquery UI dialog in which records are pasted in each row. Once the user will click the submit button, I want to have a jquery which will post the values from the popup multiline textbox to the method.
Is that possible?
Thanks in advance, Laziale
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,只需从列表中获取值并将其传递给控制器即可完成。
你的java脚本看起来像这样:
并且你将在控制器中执行这样的操作:
Yes it can be done simply get the values from the list and pass the to the controller.
your java script will look something like this:
and you will have such an action in the controller: