focus 相关问题

Focus表示当前选择用于接收输入的图形用户界面的组件。

webbrowser.open 窃取焦点,如何避免

在 Windows 上,调用 webbrowser.open 会窃取例如键盘输入焦点,并将其设置到新打开的网页浏览器选项卡。 有没有办法避免这种情况,那就是:后台打开页面?

回答 1 投票 0

Osmdroid:单击时显示和隐藏标记描述

我正在使用 Android Studio 用 Java 编写一个应用程序。 我已经使用 osmdroid 显示了地图,添加了一些叠加层以显示特殊位置上的标记,并添加了标题和描述......

回答 2 投票 0

使用 :focus 而不使用按钮或链接?

是否可以在没有按钮或链接的情况下使用 :focus 来聚焦某些内容?我试图将代码放入“不允许”按钮的游戏中,当我尝试使用 是否可以在没有按钮或链接的情况下使用 :focus 来聚焦某些内容?我正在尝试将代码放入“不允许”按钮的游戏中,当我尝试使用 <a href="#" class="button"> (如下面的代码所示)时,如果我想发送到此链接,它只会给我一条消息。我想知道我是否可以做些什么来“绕过”通过链接收到的消息或简单地使用其他东西。 我想要的是让我的内容在单击时显示并在单击屏幕上的某个位置时消失。 .morebuttonbox { height: 60px; width: 70px; background-image: repeating-linear-gradient( 90deg, #ecd0ff, white 1px, transparent 0, transparent 50%); background-size: 3px 3px; background-color: #fcf8f8; position: absolute; margin-top: 260px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85; } .button { font-size: 14px; background: #e0e0e0; padding: 2px; width: 50px; text-align: center; margin-left: 9px; margin-top: 18px; border: 1px ridge black; border-color: white #ae9cb9 #8b7c94 #7d6f85; position: absolute } .contentbox2 { background: blue; height: 130px; width: 301px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85; position: absolute; margin-top: 190px; margin-left: 69px; z-index: 1; opacity: 0; } .morebuttonbox:has(.button:focus)~.contentbox2 { opacity: 1; z-index: 10; } <div class="morebuttonbox"> <a href="#" class="button"> more </a> </div> </div> <div class="contentbox2"> <div class="byi"> <span style="background-color:#ecd0ff;color:#7d6f85;padding:1px;padding-left:5px;padding-right:5px; border-radius: 3px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85;">byi</span> text text text text text text text text text text text text text ... <div class="dni"> <span style="background-color:#ecd0ff;color:#7d6f85;padding:1px;padding-left:5px;padding-right:5px; border-radius: 3px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85;">dni</span> text text text text text text text text text text text text text ... </div> </div> </div> 在现代浏览器中,是的,应该可以将焦点放在锚点、按钮和其他表单元素之外的元素上。例如,一个简单的跨度应该可以工作...只要它具有 tabindex 属性: .morebuttonbox { height: 60px; width: 70px; background-image: repeating-linear-gradient( 90deg, #ecd0ff, white 1px, transparent 0, transparent 50%); background-size: 3px 3px; background-color: #fcf8f8; position: absolute; margin-top: 260px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85; } .button { font-size: 14px; background: #e0e0e0; padding: 2px; width: 50px; text-align: center; margin-left: 9px; margin-top: 18px; border: 1px ridge black; border-color: white #ae9cb9 #8b7c94 #7d6f85; position: absolute } .contentbox2 { background: blue; height: 130px; width: 301px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85; position: absolute; margin-top: 190px; margin-left: 69px; z-index: 1; opacity: 0; } .morebuttonbox:has(.button:focus)~.contentbox2 { opacity: 1; z-index: 10; } <div class="morebuttonbox"> <span href="#" class="button" tabindex="1"> more </span> </div> </div> <div class="contentbox2"> <div class="byi"> <span style="background-color:#ecd0ff;color:#7d6f85;padding:1px;padding-left:5px;padding-right:5px; border-radius: 3px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85;">byi</span> text text text text text text text text text text text text text ... <div class="dni"> <span style="background-color:#ecd0ff;color:#7d6f85;padding:1px;padding-left:5px;padding-right:5px; border-radius: 3px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85;">dni</span> text text text text text text text text text text text text text ... </div> </div> </div>

回答 1 投票 0

失去对一个输入的关注会影响所有输入

我创建了一个带有验证功能的申请表,要求用户在单击远离焦点框或错误消息之前在框中输入正确的信息...

回答 1 投票 0

使用 :focus 通过按钮显示某些内容

我有一个关于:焦点的问题。我想要一个按钮/文本在单击时显示 ,但我真的很难做到这一点。我尝试了几种方法,但我可以 我有一个关于:focus的问题。我想要一个按钮/文本,单击时显示 <div class="contentbox2">,但我真的很难做到这一点。我尝试了多种方法,但我只能使内容框在单击时显示,而不能将其与按钮“连接”。 我想要的是单击按钮后显示 div,然后单击屏幕上的任意位置时消失。 .morebuttonbox { height: 60px; width: 70px; background-image: repeating-linear-gradient( 0deg, #ecd0ff, #ecd0ff 1px, transparent 0, transparent 50%); background-size: 8px 8px; background-color: #fcf8f8; position: absolute; margin-top: 260px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85; } .morebutton { font-size: 14px; background: #e0e0e0; padding: 2px; width: 50px; text-align: center; margin: auto; margin-top: 16px; border: 1px ridge black; border-color: white #ae9cb9 #8b7c94 #7d6f85; } .contentbox2 { background: white; height: 130px; width: 301px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85; position: absolute; margin-top: 190px; margin-left: 69px; z-index: 1; opacity: 0; } .byi { width: 270px; height: 50px; word-break: break-word; margin-left: 15px; margin-top: 10px; } .dni { width: 270px; height: 50px; word-break: break-word; margin-top: 20px; } .more:focus~.contentbox2 { opacity: 1; z-index: 10; } <div class="morebuttonbox"> <div class="morebutton"> <a href="#" class="more"> more </a> </div> </div> <div class="contentbox2"> <div class="byi"> <span style="background-color:#ecd0ff;color:#7d6f85;padding:1px;padding-left:5px;padding-right:5px; border-radius: 3px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85;">byi</span> text text text text text text text text text text text text text ... <div class="dni"> <span style="background-color:#ecd0ff;color:#7d6f85;padding:1px;padding-left:5px;padding-right:5px; border-radius: 3px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85;">dni</span> text text text text text text text text text text text text text ... </div> </div> </div> 请参阅我对您的主要问题的评论。一种解决方案是使用 :has 选择器,然后将容器的同级作为目标: .morebuttonbox { height: 60px; width: 70px; background-image: repeating-linear-gradient( 0deg, #ecd0ff, #ecd0ff 1px, transparent 0, transparent 50%); background-size: 8px 8px; background-color: #fcf8f8; position: absolute; margin-top: 260px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85; } .morebutton { font-size: 14px; background: #e0e0e0; padding: 2px; width: 50px; text-align: center; margin: auto; margin-top: 16px; border: 1px ridge black; border-color: white #ae9cb9 #8b7c94 #7d6f85; } .contentbox2 { background: white; height: 130px; width: 301px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85; position: absolute; margin-top: 190px; margin-left: 69px; z-index: 1; opacity: 0; } .byi { width: 270px; height: 50px; word-break: break-word; margin-left: 15px; margin-top: 10px; } .dni { width: 270px; height: 50px; word-break: break-word; margin-top: 20px; } .morebuttonbox:has(.more:focus)~.contentbox2 { opacity: 1; z-index: 10; } <div class="morebuttonbox"> <div class="morebutton"> <a href="#" class="more"> more </a> </div> </div> <div class="contentbox2"> <div class="byi"> <span style="background-color:#ecd0ff;color:#7d6f85;padding:1px;padding-left:5px;padding-right:5px; border-radius: 3px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85;">byi</span> text text text text text text text text text text text text text ... <div class="dni"> <span style="background-color:#ecd0ff;color:#7d6f85;padding:1px;padding-left:5px;padding-right:5px; border-radius: 3px; border: 1px solid black; border-color: white #ae9cb9 #8b7c94 #7d6f85;">dni</span> text text text text text text text text text text text text text ... </div> </div> </div>

回答 1 投票 0

Android:如何根据焦点禁用 EditText

我正在做一个有两个 EditText 的应用程序。我想做的是,如果您单击其中一个并在其上书写,则另一个必须擦除它所具有的任何内容,并且只显示提示字符串。我正在尝试用...

回答 1 投票 0

网站不再识别弹出窗口名称。 JavaScript

告诉我这是否有意义。 多年来我一直通过弹出窗口访问网站。使用 window.open('https://example.com',mypopup,参数); 我单击主窗口中的一个按钮,...

回答 1 投票 0

防止聚焦于特定元素 jQuery

好吧,我有一个奇怪的需求。我并不是试图将焦点捕获在特定的 div 内,而是试图阻止它进入特定的其他 div。我有一个脚本可以将 div 上的类从“

回答 1 投票 0

SwiftUI 复选框聚焦环太大且偏离中心 - 这是错误吗?

此代码演示了问题:复选框的聚焦环太大并且在 macOS 14.5 上偏离中心。 (我没有检查其他 macOS 版本。另请注意,这不是 iOS 问题。) 进口Swi...

回答 1 投票 0

如何防止我的窗口获得输入焦点?

我正在实现一个自动完成功能,但它会匹配枚举字符串列表中任何位置的文本,而不仅仅是像内置 SHAutoCo 的行为那样只是建议的开头...

回答 1 投票 0

如何修复 Flutter 中自定义 TextField 中的光标行为?

我创建了一个自定义TextField,其中需要有以下内容: 可以传递自定义控制器,以便当用户扫描条形码时,我可以使用 s 更新文本...

回答 1 投票 0

如何将窗口设置为当前窗口

我的 Qt 应用程序有多个窗口,有时,即使窗口已经打开但隐藏在其他窗口下,用户也会从主窗口的菜单栏中选择一个选项来打开一个窗口。在...

回答 2 投票 0

.Net Maui Android 无法隐藏键盘

我有以下用户控件: 使用 CommunityToolkit.Maui.Core.Platform; 使用 CommunityToolkit.Mvvm.Input; 使用系统诊断; 命名空间 GSL.Presentation.CustomControls; 公开部分

回答 1 投票 0

使用 VBA (Excel) 找出 SAP 中哪个字段具有焦点/是活动字段

我用 VBA 编写脚本通过 SAP GUI 更改数据。我可以轻松地将焦点设置到 SAP GUI 中定义的字段(例如 Session.FindById("wnd[0]/usr/ctxt[2]").SetFocus)。但我怎样才能知道什么...

回答 1 投票 0

如何在 React 中将焦点设置在 div 上,以便通过 onBlur 触发效果?

我正在使用 React 开发一个非常基本的笔记应用程序。纯粹是前端问题。 在侧边栏上,我有一个所有当前笔记的列表,用户可以使用它们在它们之间进行交换。每个注释

回答 1 投票 0

iOS Safari 奇怪的聚焦输入行为,集中输入聚焦

在过去的几天里,我正在尝试解决仅在 iOS Safari 上发生的一个非常奇怪的问题。 (14/15 和 16+) 我在这里发布一个视频剪辑来解释它。 错误行为:https://streamable.com/11l02b

回答 1 投票 0

是否可以更改 HTML 表格中的选项卡/焦点顺序,使其先垂直传输,然后水平传输?

是否可以更改 HTML 表格中的选项卡/焦点顺序,使其先垂直传输,然后水平传输?

回答 3 投票 0

VB.NET MDI Children 仅关注标题栏单击

人们可能会想象,单击 MDI 子窗体(或任何控件)中的任意位置都会聚焦该窗体。但在我的应用程序中,我只能通过单击其标题栏来聚焦 MDI 子项,这是......

回答 2 投票 0

为输入焦点上的占位符提供边距/填充

基本上我想通过在焦点上填充底部占位符来进行一些输入转换,但它不起作用 .formInput{ 过渡:padding-bottom 0.3s; } .formInput:焦点::占位符{ p...

回答 1 投票 0

在 Reality 套件和 VisionOS 中对眼睛悬停做出反应

我知道所有 swiftUI 视图和按钮都可以对用户在 VisionOS 中查看的位置做出反应,但我想对 RealityKit 中的实体做同样的事情,这样用户就知道他们在看什么。 ...

回答 2 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.