像这样:工作演示 http://jsfiddle.net/VtcPB/1/
好读:http ://api.jquery.com/attribute-equals-selector/
也像@Casper所说的group
使用:$('input[name ="group1"]')
演示 http://jsfiddle.net/VtcPB/2/
或者更优化的http://jsfiddle.net/VtcPB/3/ 使用this.value
而不是$(this).val()
或者另一个更准确的演示:http: //jsfiddle.net/VtcPB/4/
希望这可以帮助
代码
$("input:radio[name=group1]").click(function() {
alert($(this).val());
});
或者
$('input[name ="group1"]').on('change',function(){
alert(this.value);
})
或者
$('input[type="radio"]').on('change',function(){
alert($(this).val());
})
或者
<input type="radio" name="group1" value="Milk"> Milk<br>
<input type="radio" name="group1" value="Butter"> Butter
$('input[type="radio"]').change(function(){
alert($(this).val());
})