这是我的情况,
我有不同的输入,他们每个人都有
<input id="q1a2" type="radio" name="q1" value="1" tabindex="-1">
<input id="q2a1" type="radio" name="q2" value="3" tabindex="-1">
等
这些值来自高级自定义字段,如:
<?php if( have_rows(\'answer_three\') ): ?>
<?php while( have_rows(\'answer_three\') ): the_row(); ?>
<input id="<?php echo \'q\' . $i . \'a3\' ?>" type="radio" name="<?php echo \'q\' . $i ?>" value="<?php the_sub_field(\'score_three\'); ?>">
<label value="<?php the_sub_field(\'score_three\'); ?>" for="<?php echo \'q\' . $i . \'a3\' ?>">
<?php the_sub_field(\'new_answer_three\'); ?></label>
<?php endwhile; ?>
<?php endif; ?>
选择输入时(“选中”)
html如下所示:
body.page-template-page-test section.questions input:checked + label
我试图实现的是只显示选中输入的值。
如何实现这一目标
谢谢你的帮助!