Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 jquery 对话框中使用同步融合自动完成 texbox。在 mvc3 实体框架中。但我在文本框中没有得到任何价值。
出现问题的原因是 AutoComplete 建议列表的 z-index 值默认设置为 1,而 jquery 对话框控件的 z-index(default 1000) 最高,因此建议列表在对话框控件后面弹出。
请使用以下 CSS 覆盖来配置 z-index 值以解决问题。
.Autocomplete_SuggestionList { z-index:2000 !重要; }