我有aspx頁面上的兩個自動完成擴展。autocompleteextender在IE缺少一個列表項
<div class="wrapper left">
<div class="col214 left label">
Location Name
</div>
<div class="col234 left">
<asp:TextBox ID="txtLocationName" CssClass="col225 tb" runat="server"></asp:TextBox>
<loc:AutoCompleteExtender ServiceMethod = "getLocationDetails" MinimumPrefixLength="4" CompletionInterval="10" EnableCaching="true" CompletionSetCount="10"
TargetControlID="txtLocationName" ID="AutoCompleteLocation" runat="server" FirstRowSelected="false" DelimiterCharacters="," ShowOnlyCurrentWordInCompletionListItem="true" ></loc:AutoCompleteExtender>
</div>
</div>
<br />
<div class="wrapper left">
<div class="col214 left label">
Clinician Surname
</div>
<div class="col234 left">
<asp:TextBox ID="txtClinicianSurname" CssClass="col225 tb" runat="server"></asp:TextBox>
<sur:AutoCompleteExtender ServiceMethod="getClinicianDetails" MinimumPrefixLength="2" CompletionInterval="100" EnableCaching="true" CompletionSetCount="10"
TargetControlID="txtClinicianSurname" ID="AutoCompletSurname" runat="server" FirstRowSelected="false" DelimiterCharacters="," ShowOnlyCurrentWordInCompletionListItem="true" ></sur:AutoCompleteExtender>
</div>
</div>
他們在我的本地主機上顯示列表項時正常工作。一旦我部署到測試環境中,Chrome瀏覽器上顯示的列表項就沒有問題,但在IE上,第二個列表項因其下方的文本框位於第二個列表項的位置而丟失。第二個文本框出現在第一個文本框autocompleteextender的第二個列表項的位置。在附加的圖像中,列表項「測試2」在IE上丟失,然而第二個文本框出現在它的位置。任何人都可以請幫忙。
在此先感謝。 images of chrome and IE