1

我是 ajax 和 Jquery 的新手。我已经编写了代码来通过我正在设计的表单中的 ajax 调用自动填充组合框。现在我想根据从组合框中选择的值自动填充相同表单的其余字段,为此我需要另一个 ajax 调用,它将只返回一个student. 有了这个对象,我可以像这样设置表单的字段:

$('#student_name').val(student.name); $('#student_roll_num').val(student.roll_num); etc.

其中 name、roll_num 是表单字段的 id。

我是这样写的:

//This following function will get called when one value from the combo box is 
//selected

 $("select#student_id").change(function(){
    var student_id = $(this).val(); //Here I am getting the selected value from 
    //the combo box
    $.ajax({
        url: "/students_database?student_id="+student_id, //this is the url that will
        //send me one student object
        dataType: "json",
        success: /*YET TO BE FILLED WITH CODE TO AUTO 
        /* POPULATE REST OF THE FIELDS*/ 
});

实际上,在这里我无法决定如何访问重新调整的学生对象,以便我可以像上面所说的那样访问它的字段。因此,如果有人能帮助我做到这一点,我将不胜感激。另外,如果有更好的方法,请提出建议。谢谢你。

4

1 回答 1

0

假设您从 ajax 调用中获得一名学生的 json,这应该有效:

 $("select#student_id").change(function(){
    var student_id = $(this).val(); //Here I am getting the selected value from 
    //the combo box
    $.ajax({
        url: "/students_database?student_id="+student_id, //this is the url that will
        //send me one student object
        dataType: "json",
        success: function(student) {
           $('#student_name').val(student.name);
           $('#student_roll_num').val(student.roll_num);
        }    
    });
 });
于 2013-09-15T08:44:10.007 回答