2

在 codeigniter javascript 中执行 post 操作后,我的复选框返回 false 值。

这是我的函数 subjectid_change 的代码:

function subjectid_change(id, subjectid){
    setValue(id, subjectid);
    var field = '#ch' + id;
    set_credithour(field, subjectid);
}

$("select[name^=subjectid]").change(function(){
var subjectid = $(this).val();
set_credithour($(this).parent('td').find('input'), subjectid);
$(this).parent().find('input').attr('name', 'credithour['+subjectid+']');
$(this).parent().next()find('input').attr('name', 'gradepoint['+subjectid+']');
$(this).parent().next().next().find('input').attr('name', 'cgpacalc['+subjectid+']');
});

我已经尝试过e.preventDefault();,但它阻止我更改以前的值。我也试过使用.prop("checked"),结果还是一样。

函数 subjectid_change 的代码:

function set_credithour(field, subjectid){
    $.post('<?php echo site_url('academic/ajax_get_subject_credit'); ?>', {subjectid:subjectid}, 
    function(response){
        if(response.success){
          $(field).val(response.value);
        } else{
          alert('The subject you entered has no credit hour.');
        }
    }, 'json');
}

那么,如果我想在执行$.post.

在控制器中:

function ajax_get_subject_credit()
{
    $subjectid = $this->input->post('subjectid');
    $this->db->select('subjectid, subjectcredit');
    $this->db->where('subjectid',$subjectid);
    $query = $this->db->get('ref_subject');
    $credithour = $query->row()->subjectcredit;
    $query->free_result();
    $result = $credithour;
    echo json_encode(array('success' => true, 'value' => $result));

}

当我选择一个主题时,学分将自动填充并单击复选框以同意计算 CGPA。但是当我在添加新主题后单击计算按钮时,计算过程不会运行并且复选框返回 false。因此,我必须再次单击复选框和计算按钮以使该过程正常工作。这使用户两次做同样的工作。如何解决这个问题?

4

2 回答 2

1
   $.post('url',function(){
    $('checkbox').attr('checked','checked');
    /*here go on with all your stuffs*/

    });
于 2013-04-05T11:13:45.630 回答
0

这是我的结果:

我发现发布后有一些错误是复选框自动重命名为等级点而不是 cgpacalc。

var subjectid = $(this).val();
    set_credithour($(this).parent('td').next().find('input'), subjectid);
    $(this).parent().find('input[name^=subjectstudentid]').attr('name', 'subjectstudentid['+subjectid+']');
    $(this).parent().parent().find('input[name^=credithour]').attr('name', 'credithour['+subjectid+']');
    $(this).parent().parent().find('input[name^=gradepoint]').attr('name', 'gradepoint['+subjectid+']');
    $(this).parent().parent().find('input[name^=cgpacalc]').attr('name', 'cgpacalc['+subjectid+']');
于 2013-04-16T04:57:24.627 回答