0
我在頁面上有兩個下拉列表,但是我注意到當數據通過JavaScript加載到兩個中的任何一個時,顯示都被搞砸了。當點擊時,我的下拉列表不會下降,而是會消失在頁面的頂部。我該如何解決這個問題?Select/DropDownList錯誤顯示
<asp:Panel ID="Pnlclone" runat="server" >
<div class="module-row">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblClone"></asp:Label>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
<asp:DropDownList ID="sRole" CssClass="scrollable" runat="server" Width="250px" Height="23px">
</asp:DropDownList>
</td>
<td>
<asp:DropDownList ID="sUsers" CssClass="scrollable" runat="server" Width="250px" Height="23px">
</asp:DropDownList>
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
<input id="btnCancel" runat="server" value="Cancel" type="button" />
<input id="btnsubmit" runat="server" value="Clone" type="button" />
</td>
</tr>
</table>
</div>
</asp:Panel>
它是一個ASP.NET Dropdownlist控件。我的意思是它在其他地方以相同的形式正常工作。只有特定的兩個似乎不能正確顯示。 – Kobojunkie