jQuery選択したradioの値を取得する方法および選択したcheckboxの値を取得する方法

1103 ワード

1.選択したradioの値を取得する方法
$('input:radio:checked').val();  
$("input[type='radio']:checked").val();
$("input[name='UnitProperty']:checked").val();

2.選択したcheckboxの値を取得する方法
var EducationalTrends = '';   //    

$("input[type=checkbox]:checked", $("#EducationalTrends")).each(function () {
        if (EducationalTrends != '') {
            EducationalTrends += ",";
        }
        if ($(this).parent().find("input[type='text']").length > 0) {
            if ($(this).parent().find("input[type='text']").val().replace(/^\s+|\s+$/g, '') == '') {
                EducationalTrends += "  (   )";
            }
            else {
                EducationalTrends += "  " + $(this).parent().find("input[type='text']").val().replace(/^\s+|\s+$/g, '');
            }
        }
        else {
            EducationalTrends += $(this).val();
        }
        alert(EducationalTrends);
    });