<body>
<%
int selected = 0;
String para = request.getParameter("brand");
if(para != null)
{
selected = Integer.parseInt(para);
}
%>
<form name="form1" method="post" action="">
<select name="brand" onChange="form1.submit();">
<%
for(int i = 0; i < 5; i++)
{
if(i == selected)
{
%>
<option value="<%=i%>" selected>a</option>
<%
}
else
{
%>
<option value="<%=i%>">b</option>
<%
}
}
%>
</select>
</form>
</body>
-------------------------------------------------------------------------------------------
这个家伙很懒,什么也没留下......