を追加しませんでした。
$('input:radio[name=<name of your radio buttons>]:checked').attr("value");
に続き、あなたが
$('input:radio[name=<name of your radio buttons>]').each(
$(this).change(function()
{
$('#<id of text box u want to update>').val($('#<id of text box u want to
update>').val()+$(this).attr("value"));
//your ajax code goes here: $.ajax(url,itemValue:$(this).attr("value")),success:success...
})
)
注意を次のようにあなたが何かをする必要があり、ページの読み込みのラジオボタンにイベントをバインドしたい場合として値を選択する方法は次のようになります。私は」あなたの値がテキストボックスに格納されていると仮定すると、他の種類の要素をそこに持つことができます。
まあ、サーバー上でコードを更新したいのであれば、その関数内のajaxリクエストをサーバーサイドハンドラに送信して処理する必要があります。 http://api.jquery.com/jQuery.ajax/
希望