0

在一个页面中,我显示了一个类别的所有图像。

  $("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>

这是我的选择。单击宠物选项时,宠物图像将显示。否则禁用

4

1 回答 1

0

$("input[name$='pets']").click(function() { var test = $(this).val();

    $("div.desc").hide();
    $("#flowers" + test).show();
});
}); 

 $("input[name$='pets']").click(function() {
        var test = $(this).val();

        $("div.desc").hide();
        $("#flowers" + test).show();
    });
	});	

于 2015-09-22T06:34:58.377 回答