jquery javascript:选择单选按钮时执行操作

时间:2009-11-07 17:27:12

标签: javascript jquery radio-button

我有以下单选按钮,默认情况下都没有选中。

<input type="radio" name="location" value="0" /> home
<input type="radio" name="location" value="1" /> work
<input type="radio" name="location" value="2" /> school

如何检查何时检查其中任何一个。我正在寻找像点击这样的东西,但它不起作用

$("input[name=location]").click(function(){
    alert("selected");
}); 

5 个答案:

答案 0 :(得分:11)

$('input[name=location]').change(function(){
    alert(this.checked);
});

答案 1 :(得分:3)

尝试使用以下行代码

$(document).ready(function(){

}
);

答案 2 :(得分:2)

您是否尝试过onChange事件?

$("input[name=location]").bind('change', function(){
    alert("selected");
});

答案 3 :(得分:1)

这对我来说很好。你引用了jquery库吗?

答案 4 :(得分:1)

$(document).ready(function(){ 
  $("input[name=location]").bind('change', function(){
   alert("Hello!"); 
  }); 
});