How do you make the radio button text to be clickable too?(你如何使单选按钮文本也可点击?)
问题描述
我有这个单选按钮(以及其他一些在这个之后):
i have this radio button (and some other after this one):
<input type="radio" name="group1" value="Milk"> Milk<br>
但如果我想激活单选按钮,我必须单击它,单击按钮右侧的牛奶"一词不会激活它.我该怎么做?到目前为止,我发现的有关单选按钮的所有示例都有相同的问题.提前致谢.
But if i want to activate the radio button, i have to click it, clicking the word "Milk" which is to the right of the button, doesn't activate it. How can i do that?, all the examples i found about radio buttons so far, have the same issue. Thanks in advance.
推荐答案
这里要使用label标签.
Here you want to use the label tag.
类似:
<label>
<input type="radio" name="group1" value="Milk">
Milk
</label><br/>
标签告诉浏览器其中包含的所有内容都应该被视为一个元素(就文本而言.它们不是 div)
Labels tell the browser that everything contained within should be treated as one element (in terms of text. They are not divs)
看看这个例子:http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_label
这篇关于你如何使单选按钮文本也可点击?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:你如何使单选按钮文本也可点击?


基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01