1
select에서 optgroup을 사용하고 선택 항목이 updatepanel 내부에있을 때 IE 11이 설치되어 이상한 문제가 있습니다.updategroup의 optgroup은 IE 11에서 하이라이트를 유지합니다.
커서가 다른 필드에도 있지만 선택된 값은 계속 강조 표시됩니다.
<asp:UpdatePanel ID="updpnlContent" runat="server">
<ContentTemplate>
<select>
<optgroup label="Alkaline Metals">
<option>Lithium (Li)</option>
<option>Sodium (Na)</option>
<option>Potassium (K)</option>
</optgroup>
<optgroup label="Halogens">
<option>Fluorine (F)</option>
<option>Chlorine (Cl)</option>
<option>Bromine (Br)</option>
</optgroup>
</select>
</ContentTemplate>
</asp:UpdatePanel>
나를 도울 수있는 답변을 보내 주셔서 감사합니다.
안녕하세요? 표준 HTA 응용 프로그램에서 동일한 문제가 발생했습니다. optgroups를 포함하는 선택 드롭 다운은 항목이 초점을 잃을 때 강조 표시 옵션을 유지합니다! – DarrenNavitas