私は今、私を夢中にさせる問題を抱えています。私のWebページには RadioButton があり、次のように属性を追加します。
...aspで
<div id="radio" class="C_Radio">
<asp:RadioButton id="rad1" GroupName="typeSelect" runat="server" />
<asp:RadioButton id="rad2" GroupName="typeSelect" runat="server" />
</div>
...asp.vb で
rad1.Attributes.Add("rad1", "10")
rad2.Attributes.Add("rad2", "20")
fireBug では、次のように表示されます。
<div class="C_Radio" id="radio">
<span rad1="10">
<span rad2="20">
値はそこにありますが、元に戻すことはできません。
JQueryで次のことを試しました
var test;
test = $("#radio input:checked + label").text(); //label of radioButton
test = $("#radio input:checked").val(); //id of selected radioButton
test = $(test); //undefined
test = $(test).val(); //undefined
test = $(test).attr(); //undefined
test = $(test).attr("test"); //undefined
test = $(test).attr("value"); //id of selected radioButton
test = $("rad1").val(); //undefined
test = $("rad1").attr(); //undefined
test = $("#radio").attr("rad1"); //undefined
test = $("#radio input:checked").attr("rad1"); //undefined
test = $("input[name='radio']:checked").val(); //undefined
test = $("input[name='rad1']:checked").val(); //undefined
誰でも私を助けてもらえますか?私が知っている他の方法でそれを行うこともできますが、この状況を解決したいと思います。