如何获得单选按钮组选择

时间:2014-04-29 08:26:14

标签: jquery

我有以下代码,虽然有更优雅的方式来获取所选的无线电值,因为我已经在单选按钮组的代码中。这是为了获取组中的所选单选按钮。 非常感谢,

$('input[name=pig]').change(function () {

    // this seems redundant
    namespace('bla').myVariable = $('input[name=pig]:checked').val();  

    // ie. something like
    namespace('bla').myVariable = $(this).checked.val();
});

3 个答案:

答案 0 :(得分:1)

我认为这是你想要实现的目标:

namespace('bla').myVariable = this.value;

答案 1 :(得分:1)

这应该这样做。

  namespace('bla').myVariable = $(this).val();

答案 2 :(得分:0)

$(this).val()就足够了:

$('input[name=pig]').change(function () {
  console.log($(this).val()); // or this.value
});

<强> The demo.