如果未选中,我尝试在输入广播的父标签中使用CSS,而不使用javascript。我尝试过,但没有成功;我的html代码是
<div class="type">
<label><input type="radio" name="std" value="10">Public</label>
<label><input type="radio" name="std" value="20">Member</label>
<label><input type="radio" name="std" value="30">VIP</label>
</div>
我尝试了
.type label:checked:before
{
content: "\e955";
}
我也尝试过
.type label:before input[type="radio"]:checked
{
content: "\e955" !important;
}