: ASP.NET JQuery
ASP.NET
HTML
→SPAN、CssSAPN。id、name、(name)。
jQuery
グリフィンは何ですか$("span[id='rbltest'] > :input[type='radio']").each(function () {
if ($(this).attr("checked") == true) {
alert($(this).val(););
}
});
→SPAN、、
function・・・
function getCheckedRadioButtonList(id){
var val = "";
$("span[id='" + id + "'] > :input[type='radio']").each(function () {
if ($(this).attr("checked") == true) {
val = $(this).val();
}
});
return val;
}
-------------------------------------------------------------
RadioButtonListVerticalHorizontal、HorizontalTable
。
、
function getCheckedRadioButtonList(id) { var val = ""; $("#" + id).find(":radio").each(function () { if ($(this).attr("checked") == true) { val = $(this).
0 コメント:
コメントを投稿