在 Firefox 中选择标签中的输入元素时,避免单选输入获得焦点

发布于 2024-10-18 05:50:34 字数 397 浏览 2 评论 0原文

我已阅读此问题,并且遇到同样的问题:
将文本输入放在单选按钮的标签内?

随意使用Firefox看看(Chrome和IE8没有这个问题。):
http://pastehtml.com/view/1dbqqb3.html

我现在明白一些javascript必须用于修复 Firefox 中的此行为。

但我不知道如何编写这段代码。

提前致谢。

I have read this question and I am having the same problem:
Put text input inside label for radio button?

Feel free to take a look using Firefox (Chrome and IE8 do not have this problem.):
http://pastehtml.com/view/1dbqqb3.html

I now understand some javascript has to be used to fix this behavior in Firefox.

But I have no idea how to write this piece of codes.

Thanks in advance.

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

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

发布评论

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

评论(1

南风起 2024-10-25 05:50:34

一些 html:

<input id="radio1" type="radio" />
<input id="text1" onfocus="selectRadioBtn('radio1')" />

JavaScript:

function selectRadioBtn(id)
{
    document.getElementById(id).checked = true;
}

Some html:

<input id="radio1" type="radio" />
<input id="text1" onfocus="selectRadioBtn('radio1')" />

The JavaScript:

function selectRadioBtn(id)
{
    document.getElementById(id).checked = true;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文