如何从jquery中的所选单选按钮获取值

时间:2016-01-25 04:14:47

标签: jquery

我的代码存在问题.. 我想在选中时从单选按钮获取值,并计算所选单选按钮的值。 并在输入文本中显示结果。

1 个答案:

答案 0 :(得分:0)

<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>

<script>

    $(document).ready(function () {

        var szradio = '<input type="radio" name="gender" value="1"> Male<br>  <input type="radio" name="gender" value="2"> Female<br>  <input type="radio" name="gender" value="3"> Other'

        $('#div_content').append(szradio)

        $('body').on('change','input[name="gender"]',function () {

            $('#txtInput').val($(this).val())
        });


 });  
</script>
</head>
<body>


    <input type="text" id="txtInput"/>
    <br />

  <div id="div_content">


  </div>

</body>
</html>