// HTML<% using (HTML.BeginForm("MyAction","MyController",new { ID = VIEwContext.RouteData.Values["ID"] },FormMethod.Post,new { enctype = "multipart/form-data", })) { %> <input type="file" name="blah" /> <% } %>// script$container.find('.mybutton').click(function() { $container.find('.myForm').submit();});
在提交表单之前,我需要添加一些额外的参数(路由值),这些参数只能在提交时计算.
我怎么做?
解决方法 您可以在提交之前在表单中附加隐藏字段:$container.find('.mybutton').click(function() { var form = $container.find('.myForm'); form.append( $(document.createElement('input')) .attr('type','hIDden') .attr('name','somename') .attr('type','somecalculatedvalue') ); form.submit();});总结
以上是内存溢出为你收集整理的使用Html.BeginForm和jQuery提交添加动态参数全部内容,希望文章能够帮你解决使用Html.BeginForm和jQuery提交添加动态参数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)