单击超链接时如何选择html上的搜索输入控件?
我正在寻找一个简单的解决方案,以在按下超链接时选择搜索输入框。
如果这可以在没有 JavaScript 的情况下仅通过使用相对锚点来实现,我会很高兴。
在我的例子中,输入看起来已经有一个id
,但没有为其定义锚点。
I am looking for a simple solution to select a search input box when you press a hyperlink.
I would be nice if this could be implemented without JavaScript, only by using relative anchors.
In my case it looks that the input already has an id
but there is no anchor defined for it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
带有
for
的label
就是您要寻找的内容。锚标记不会与输入字段交互,除非您使用 JavaScript 定义它。A
label
with thefor
is what you are looking for. Anchor tags don't interact with input fields, unless you define it with JavaScript.