我有一个表单,我想将表单的值传递给一个动作。我也不想使用提交按钮,而是想使用 struts2 锚标记。这是我的以下代码:
<s:form id="form" theme="xhtml" >
<sj:datepicker id="startDate" name="startDate" label="Start Date" required="true"/>
<sj:datepicker id="endDate" name="endDate" label="End Date" required="true" />
</s:form>
<s:url action="excelExport" id="excelurl" >
</s:url>
<s:a formId="form" href="%{excelurl}" onclick="document.forms['form'].submit();" >Export</s:a>
这里的问题是开始日期和结束日期没有传递给操作。有人可以建议如何将表单值传递给操作。我正在使用 struts2 jquery 插件顺便说一句。如果需要更多信息,请告诉我。提前致谢!