使用MVC 4中表单之外的值

时间:2013-09-07 02:54:25

标签: asp.net-mvc-4 asp.net-mvc-partialview

我在PartialView中有一个标准表单,由Ajax.ActionLink加载。回发表单时,我还想在PartialView中使用表单外部页面元素中的几个值。

这可能吗?完成这项工作的最佳方法是什么?

感谢。

1 个答案:

答案 0 :(得分:1)

绝对可能。只需使用javascript在提交表单时或之前将页面中的值复制到表单中。

使用jQuery:

$(function () {
    $('form').submit(function () {
        // either copy the values into elements already in the form
        // or, copy the elements themselves and place them in the form
    });
});