Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 PartialView 中有一个标准表单,由 Ajax.ActionLink 加载。发回表单时,我还想使用 PartialView 中表单之外的页面元素中的几个值。
这可能吗?完成这项工作的最佳方法是什么?
谢谢。
这是绝对可能的。只需在提交表单时或事先使用 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 }); });