我在PartialView中有一个标准表单,由Ajax.ActionLink加载。回发表单时,我还想在PartialView中使用表单外部页面元素中的几个值。
这可能吗?完成这项工作的最佳方法是什么?
感谢。
答案 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
});
});