Android 浏览器 - 当锚点聚焦时删除轮廓边框

发布于 2024-12-04 10:12:49 字数 321 浏览 1 评论 0原文

我在我的 Android 应用程序上使用一个加载外部页面的 webview。 它有一些锚点( 标签)。当我按下它时,会出现黄色边框。

我怎样才能防止它并删除这个边框?

我尝试过以下技巧:

// jQuery
$("a").focus(function(){
    $(this).attr("hideFocus", "hideFocus");
});

// CSS
a, :focus {
    outline: none;
}

但没有成功。

谢谢 !

I am using on my Android app a webview which loades an external page.
It has a few anchors (<a> tags). When I press on it, yellow border appears.

How can I prevent it and remove this border ?

I've tried following tricks:

// jQuery
$("a").focus(function(){
    $(this).attr("hideFocus", "hideFocus");
});

// CSS
a, :focus {
    outline: none;
}

but with no success.

Thanks !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寒冷纷飞旳雪 2024-12-11 10:12:49

设置 CSS 属性 -webkit-tap-highlight -color 如下:

* { -webkit-tap-highlight-color: rgba(0,0,0,0); }

注意:由于 webkit 渲染高亮的方式,以其他方式设置颜色通常会失败。根据我的经验,取决于版本/变体。

Set the CSS property -webkit-tap-highlight-color as follows:

* { -webkit-tap-highlight-color: rgba(0,0,0,0); }

Note: setting the color in other ways usually fails because of the way webkit renders the highlight. Depends on version/variant according to my experience.

拥醉 2024-12-11 10:12:49

根据这个 发布它更好用

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: none;
}

according to this post it's better to use

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: none;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文