这是我的单选按钮:
<div style="float: left; margin-top: 35px; margin-left: 38px;">
<input type="radio" name="cat" class="styled" value="jersey" />
</div>
<div style="float: left; margin-left: 58px; margin-top: 35px;">
<input type="radio" name="cat" class="styled" value="shorts" />
</div>
<div style="float: left; margin-left: 58px; margin-top: 35px;">
<input type="radio" name="cat" class="styled" value="shirts" />
</div>
<div style="float: left; margin-left: 58px; margin-top: 35px;">
<input type="radio" name="cat" class="styled" value="reversible" />
</div>
<div style="float: left; margin-left: 88px; margin-top: 35px;">
<input type="radio" name="cat" class="styled" value="outerwear" />
</div>
<div style="float: left; margin-left: 88px; margin-top: 35px;">
<input type="radio" name="cat" class="styled" value="helmets" />
</div>
<div style="float: left; margin-left: 68px; margin-top: 35px;">
<input type="radio" name="cat" class="styled" value="other" />
</div>
我尝试了多个 jquery 解决方案,如果选择了某个单选按钮,它将显示该单选按钮的唯一内容。但是,我所有的尝试都失败了,我真的不知道为什么(我确实有其他 jquery 脚本正在运行,也许是冲突?)
所以,例如...
如果单选按钮"cat"
的值为"helmets"
selected,我想显示helmets
. 如果值更改为"other"
,让我们取消helmets
并显示 的内容"other"
。
谢谢你的帮助!