html - 同时检查单选按钮

标签 html css radio-button

我一直在尝试复制此页面 https://vk.com/你可以看到他们已经改变了第二种形式的单选按钮的标准外观。

我成功地改变了按钮的设计,但现在它们都被同时检查了。

HTML

<form class="form2">
  <div class="heading">
    <h2>Poprvé na VK?</h2>
    <p>Okamžitá registrace</p>
  </div>
  <input type="text" placeholder="Vaše jméno" required>
  <input type="text" placeholder="Vaše příjmení" required class="last-name">
  <label class="birth">
    <span>Datum narození
      <i class="fa fa-question-circle-o"
         aria-hidden="true"></i></span>
    <input type="date" class="date" required>
  </label>
  <label>
    <span class="gender-head">Pohlaví</span>
    <div class="gender">
      <input type="radio" id="1-option" name="selector" value="female" class="control">
      <div class="button"></div>Žena
      <input type="radio" id="2-option" name="selector" value="male" class="control">
      <div class="button"></div>Muž
      <input type="radio" id="3-option" value="other" name="selector" class="control">
      <div class="button"></div>Jiné
    </div>
  </label>
  <button type="submit">Zaregistrovat se</button>
  <a href="#">
    <i class="fa fa-facebook-square" aria-hidden="true"></i> Přihlásit se přes Facebook</a>
</form>

CSS

form {
  width: 290px;
  background-color: #fff;
  padding: 20px 15px;
  float: right;
  border: 1px solid #E0E1E3;
  font-size: 13px;
  border-radius: 3px;
}

.form2 {
  margin-right: 10px;
  clear: right;
  height: 380px;
  display: flex;
  flex-flow: row wrap;
  color: #333436;
  justify-content: center;
}

.form2 .heading {
  flex-wrap: wrap;
  margin: 0 auto;
}

.form2 h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 100;
}

.form2 p {
  font-size: 12px;
  margin: 2px 0 0 9px;
}

.form2 input {
  height: 30px;
  border-radius: 3px;
  border: 1px solid #DBDCDE;
  width: 270px;
  margin-top: -15px;
  margin-bottom: 0;
}

.form2 .last-name {
  margin-top: -15px;
}

.form2 span {
  font-weight: 600;
  margin-top: -50px;
  color: #7A7B7D;
  font-size: 13px;
}

.form2 .birth {
  margin: -15px 0 0 10px;
}

.form2 .date {
  margin-top: 10px;
  margin-bottom: -100px;
}

.form2 .gender-head {
  margin-left: -10px;
  margin-bottom: 20px;
}

.gender {
  display: flex;
  width: 260px;
  margin: 15px 0 0px -10px;
  justify-content: space-between;
  font-size: 13px;
  color: #000;
}

.gender input[type="radio"] {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.gender .button {
  border: 1px solid #A3A4A6;
  background: #fff;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  margin-top: 2px;
  margin-right: -40px;
}

.gender .button:hover {
  cursor: pointer;
  background-color: #EAEBED;
}

.gender .button::before {
  display: block;
  content: '';
  height: 6px;
  width: 6px;
  border-radius: 50%;
}

input[type="radio"]:checked ~ .button {
  border: 1px solid #5A7CA3;
}

input[type="radio"]:checked ~ .button::before {
  background: #5A7CA3;
  margin: 3px 2px 2px 3px;
}

::-webkit-input-placeholder {
  color: #7A7B7D;
  padding-left: 12px;
}

.form2 button {
  height: 20px;
}

http://jsfiddle.net/Skidle/u3zj66sd/

我还没有学过 JavaScript,所以我更喜欢纯 CSS 和 HTML 的解决方案。谢谢!

最佳答案

如果您查看单选按钮,通过删除 position,您可以看到只有一个被选中,并且每个选择都是正确的:

preview

问题在于演示文稿的工作方式。 CSS 代码:

input[type="radio"]:checked ~ .button::before   // Is wrong.
input[type="radio"]:checked + .button::before   // Is right.

解释

CSS 给出的代码,~ 选择器是一个兄弟选择器,它选择所有 选择器。

而您需要的是+选择器,即直接或相邻的兄弟选择器。这只会选择一个。

这里需要修改:

input[type="radio"]:checked + .button::before {
  background: #5A7CA3;
  margin: 3px 2px 2px 3px;
}

fiddle :http://jsfiddle.net/0rqu3s2c/

Note: There's an issue when you try to click on the other inputs. So, you might need to check what's blocking it. Please do not use absolute positioning without the desired result.

关于html - 同时检查单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40563271/

相关文章:

html - 嵌套 CSS 中的溢出父级 <div>

javascript - 使用 jquery 检测移动到另一个 html 元素上的 html 元素

javascript - 使图像加载更快的 HTML

javascript - Jquery 单选按钮焦点不起作用

javascript - JQuery:当鼠标按下子对象时,仅触发父对象而不触发子对象?

c# - 如何以编程方式更改 C# 中 ProgressTemplate 内的跨度文本?

javascript - 单选按钮在javascript函数中产生未定义的值

android - 从 Android 中的单选组中删除动态创建的单选按钮

javascript - 如何使用 jquery 移动侧边菜单和顶部栏

javascript - 如何实现拖放以便拖动子元素将拖动整个父元素