嗨,我有以下 javascript 和 DropDownList:
function loadanlasstyp(ddl) {
var ControlName = document.getElementById(ddl.id);
if (ControlName.value == "Event") {
window.location = "../book/event.aspx";
}
else if (ControlName.value == "Short Meeting") {
window.location = "../book/shortmeeting.aspx";
}
return true;
}
下拉列表:
<asp:DropDownList ID="ddlAnlasstyp" runat="server" CssClass="ff" Height="21px" onChange="javascript:loadanlasstyp(this)"
TabIndex="3" Width="150px">
<asp:ListItem Value="Short meeting">Short</asp:ListItem>
<asp:ListItem Value="Event">Event</asp:ListItem>
</asp:DropDownList>
我在两个页面上都有 Javascript 函数和下拉列表,所以我可以在它们之间切换。“Shortmeeting.aspx”默认加载。如果我单击 DropDownList 中的“事件”,我可以从“Shortmeeting.aspx”切换到“Event.aspx”。现在,如果我想切换回“Shortmeeting.aspx”,为此我单击 DropDownList 中的“SHORT”,但它不起作用。
我怎样才能正确地在这两个页面之间切换?请帮忙