jquery html使用

获取radio值

$('input:radio:checked').val();

input禁用

$('input[name="company[company_name]"]').prop("readonly", '');

select禁用

$('select[name="user[meta][age_group]"]').prop("disabled", false);

disabled无法提交问题

$("#app-edit-profile").find('form').submit(function(){
    checkDisable()
})

function checkDisable() {
    $("select[disabled]").each(function() {
        $(this).attr("disabled", false);
    });
    return true;
}

此处评论已关闭