我正在使用JQueryMobile开发适用于android的hybird应用程序。任何人都知道如何在我单击链接,按钮时禁用WebView中由系统添加的烦人的橙色边框。



我尝试了样式
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);-webkit-tap-highlight-color: rgba(0, 0, 0, 0);,并100%确保它在我的设备上不起作用。

我可以在WebView中进行任何配置或编码以禁用边框吗?

最佳答案

在Nexus 10(Android 4.4.2)上进行了测试。
这为我工作:

.affected-element {
    outline: 1px solid transparent;
}

10-05 19:02