css 任何人可以帮助我与这个问题有关单选按钮[关闭]

flseospp  于 2023-01-27  发布在  其他
关注(0)|答案(3)|浏览(124)

已关闭。此问题需要超过focused。当前不接受答案。
**想要改进此问题吗?**更新此问题,使其仅关注editing this post的一个问题。

昨天关门了。
Improve this question
当我运行此代码时,它不是一个单选按钮,就像我可以单击所有2个按钮,并且我不能删除单击<!DOCTYPE html> <html> <title>abc</title> <body> <h1>Input Form</h1> <form action="abc"> <input type="radio">abc <input type="radio">hwqwhdwq </form> </body> </html>
我是一个高中生,正在学习一些关于udemy的课程,遇到了这个问题,我希望有人能帮助我找出我错在哪里

enxuqcxy

enxuqcxy1#

i think you have to do this 
    <!DOCTYPE html> 
    <html> 
    <head>
        <title>abc</title> 
    </head>
    <body> 
        <h1>Input Form</h1>
        <form action="abc">
            <label for="radio1"><input type="radio" name="radioBtn" id="radio1"> Radio    1</label>

            <label for="radio2"><input type="radio" name="radioBtn" id="radio2"> Radio 2</label>
        </form>
    </body>
    </html>
pcrecxhr

pcrecxhr2#

登记表

公头

<label for="female"><input type="radio" name="Gender" id="radio2" value="female">Female</label>
    </form>
bpsygsoo

bpsygsoo3#

如果我理解你的话,我认为你是想只选择一个单选框,而不是两个复选框,对吗?如果是,那么这就是如何做到这一点,添加name="”属性,并设置相同的名称给他们两个。

<body>
  <h1>Input Form</h1>
  <form action="abc"> <input type="radio" name="btn">abc <input type="radio" name="btn">hwqwhdwq </form>
</body>

相关问题