我有 4-5 个单选按钮,每个按钮下方都有一个图像。当按钮被选中时,我想将图像更改为另一个图像。如果要检查选择的内容,然后将图像放在该图像上,我可以按 4 完成,但我想用几行作为所有单选按钮的相同图像。我开始了这个:
CSS
#selectedRadio {
display:none;
width:74px;
height:69px;
position:absolute;
margin-top:20px;
}
jQuery
<script>
jQuery(function(){
jQuery("input[name=choose]").change(function(){
if ($(this).is(":checked")) {
jQuery("#selectedRadio").slideDown()
}
});
});
</script>
HTML
<div id="selectedRadio"><img src="selected.png" /></div>
<input name="choose" value="black"> <br><img src ="black.jpg" />
<input name="choose" value="white"> <br><img src ="white.jpg" />
<input name="choose" value="red"> <br><img src ="red.jpg" />
<input name="choose" value="blue"> <br><img src ="blue.jpg" />