我正在使用HTML autocomplete
控件。当我的应用程序在IE上运行时,我注意到一件奇怪的事情。每次我将鼠标悬停在自动填充上时,会在其下方添加空格。以下是参考图像。
以下是自动填充的代码:
<span class="searchFormControl">
<%= Html.AutoCompleteFor(model => model.ContactEmail, controller: "ContactEmailAutocomplete", parentId: "ContactId", htmlAttributes: new { @onkeypress = "return allowAlphaNumericAndApostrophe(event);", @onpaste = "return false" })%>
</span>
此问题不会出现在Google Chrome上。