Android webview 不活动下拉菜单
我有一个 web 视图,显示 div/表格的动态列表,其中包含所有设置为显示的下拉菜单:无;并显示可见的标题链接。
如果我点击标题,div 将会显示,但在大多数情况下,我无法点击下拉菜单,或者如果我选择的选项显示不正确。
问题发生在之前被隐藏的元素中,并且在选择下拉列表后 Web 视图不会更新,甚至允许单击它。
I have an webview that show a dynamic list of div/tables with drop downs in it that all are set to display: none; with an visible headline link to show.
If i click on a headline the div will show up but in most cases i can't click on the drop down or if i select a option that doesn't appear correctly.
The problem occours in a element has been hidden before and the webview doesn't update after a selection on a drop down or even does allow do click it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个CSS:
<代码>选择{
可见性:可见;
-webkit-外观:菜单列表文本;
}
我遇到了类似的问题,这个< /a> 是为我修复的。
Try this css:
select {
visibility: visible;
-webkit-appearance: menulist-text;
}
I had similar issues and this is what fixed it for me.