I have an webview that show a dynamic list of div/tables开发者_JS百科 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.Try this css:
select {
visibility: visible;
-webkit-appearance: menulist-text;
}
I had similar issues and this is what fixed it for me.
精彩评论