在一个页面中,我显示了一个类别的所有图像。
$("input[name$='pets']").click(function() {
var test = $(this).val();
$("div.desc").hide();
$("#flowers" + test).show();
});
});
<label>
<input type="radio" name="pets" value="2" id="radio-choice-0a">Pets
</label>
<label>
<input type="radio" name="flowers" value="3" id="radio-choice-0b">Flowers
</label>
这是我的选择。当点击宠物选项宠物图像将显示。否则禁用