我试图根据所选的开关拉取复选框的值。如何提取所选开关的值?
这是我的Fiddle
input[type=checkbox]{
height: 0;
width: 0;
visibility: hidden;
}
label {
cursor: pointer;
text-indent: -9999px;
width: 200px;
height: 100px;
background: grey;
display: block;
border-radius: 100px;
position: relative;
}
label:after {
content: '';
position: absolute;
top: 5px;
left: 5px;
width: 90px;
height: 90px;
background: #fff;
border-radius: 90px;
transition: 0.3s;
}
input:checked + label {
background: #bada55;
}
input:checked + label:after {
left: calc(100% - 5px);
transform: translateX(-100%);
}
label:active:after {
width: 130px;
}
// centering
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
<input type="checkbox" id="switch" /><label for="switch">Toggle</label>
编辑: 这与读取复选框值不同。这是一个标签。
答案 0 :(得分:0)
与你的小提琴一起,这是一个包含答案的例子。
<input type="checkbox" id="switch" onchange="document.getElementById('state').innerHTML=(this.checked?'on':'off');"/><label for="switch">Toggle</label>
Ergo,查询输入的checked属性。