0

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

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

谢谢。

4

1 回答 1

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
    });
});
于 2013-09-07T03:00:01.500 回答