我正在做员工可以写简历的网站,我有一部分过去的工作,我想显示员工可以写此信息的字段(公司,职位等),但是,我只想显示其中一个部分,如果员工想要添加更多旧工作,他将单击“添加更多”,然后为那些过去的工作显示 2 或 3 个更多字段,目前我有 3 个这样声明的部分:
<asp:Label ID="Label6" runat="server" Text="Empresa" Style="z-index: 1; left: 10px;
top: 165px; position: absolute"></asp:Label>
<asp:TextBox ID="TextBox3" runat="server" Style="z-index: 1; left: 80px; top: 165px;
position: absolute" Width="200px"></asp:TextBox>
<asp:Label ID="Label7" runat="server" Text="Fecha" Style="z-index: 1; left: 10px;
top: 195px; position: absolute"></asp:Label>
<asp:DropDownList ID="DropDownList1" runat="server" Style="z-index: 1; left: 80px;
top: 195px; position: absolute">
<asp:ListItem>Enero</asp:ListItem>
<asp:ListItem>Febrero</asp:ListItem>
<asp:ListItem>Marzo</asp:ListItem>
<asp:ListItem>Abril</asp:ListItem>
<asp:ListItem>Mayo</asp:ListItem>
<asp:ListItem>Junio</asp:ListItem>
<asp:ListItem>Julio</asp:ListItem>
<asp:ListItem>Agosto</asp:ListItem>
<asp:ListItem>Septiembre</asp:ListItem>
<asp:ListItem>Octubre</asp:ListItem>
<asp:ListItem>Noviembre</asp:ListItem>
<asp:ListItem>Diciembre</asp:ListItem>
</asp:DropDownList>
<asp:DropDownList ID="DropDownList2" runat="server" Style="z-index: 1; left: 172px;
top: 195px; position: absolute" OnSelectedIndexChanged="DropDownList2_SelectedIndexChanged">
</asp:DropDownList>
<asp:Label ID="Label8" runat="server" Text="a" Style="z-index: 1; left: 235px; top: 195px;
position: absolute"></asp:Label>
<asp:DropDownList ID="DropDownList3" runat="server" Style="z-index: 1; left: 250px;
top: 195px; position: absolute">
<asp:ListItem>Enero</asp:ListItem>
<asp:ListItem>Febrero</asp:ListItem>
<asp:ListItem>Marzo</asp:ListItem>
<asp:ListItem>Abril</asp:ListItem>
<asp:ListItem>Mayo</asp:ListItem>
<asp:ListItem>Junio</asp:ListItem>
<asp:ListItem>Julio</asp:ListItem>
<asp:ListItem>Agosto</asp:ListItem>
<asp:ListItem>Septiembre</asp:ListItem>
<asp:ListItem>Octubre</asp:ListItem>
<asp:ListItem>Noviembre</asp:ListItem>
<asp:ListItem>Diciembre</asp:ListItem>
</asp:DropDownList>
<asp:DropDownList ID="DropDownList4" runat="server" Style="z-index: 1; left: 342px;
top: 195px; position: absolute" OnSelectedIndexChanged="DropDownList4_SelectedIndexChanged">
</asp:DropDownList>
<asp:Label ID="Label9" runat="server" Text="Puesto:" Style="z-index: 1; left: 10px;
top: 225px; position: absolute"></asp:Label>
<asp:TextBox ID="TextBox4" runat="server" Style="z-index: 1; left: 80px; top: 225px;
position: absolute" Width="200px"></asp:TextBox>
<asp:Label ID="Label10" runat="server" Text="Funciones:" Style="z-index: 1; left: 10px;
top: 255px; position: absolute"></asp:Label>
<asp:TextBox ID="TextBox5" runat="server" Rows="5" TextMode="MultiLine" Style="z-index: 1;
left: 80px; top: 255px; position: absolute" Width="200"></asp:TextBox>
所以,我只想隐藏其他 2 个,然后在单击“添加更多”按钮时显示它们,我是 ASP 上的新手,不知道该怎么做,以及这会如何影响其他标签和文本框我有,因为每个人都有一个左上角的位置,如果他们需要移动或者他们会发生什么。
我希望我正在解释我的问题,你可以帮助我:D