您好我想在提交表单后保留下拉列表的值。我选择了一年的下拉菜单。之后,应显示具有该年份的所有合同。
我的jsp中有一个下拉列表,如下所示:
app.get('/admin/accounts/show_team/api/merge', function(req,res){
var team_id = '587f25a98a583e1954908832';
var account_id = '587f210d7729b13554901cf4';
var member_id = '587f276edebe7725c48e7286';
MemberModel.findById(member_id)
.populate('team')
.populate('account')
.exec(function(err,results){
res.send(results);
})
});
在我的行动中,我有以下内容:
<html:select name="contratForm" property="annee">
<%
int current_year = Calendar.getInstance().get(Calendar.YEAR);
for(int year = 2000; year<=current_year; year++)
{
%>
<option> <%=year %> </option>
<%
}
%>
</html:select><SPAN class="ChampObligatoire">*</SPAN>
我想要的是在提交表单之前选择的年份,在我返回合同列表时显示。 有什么帮助吗?