0
var pid = $('#byId').val();

jQuery("#patient").jqGrid({
    mtype: 'GET',
    url : "totalPatientList.html",
    postData :{pid:pid},
    datatype : "json",
    colNames : [ 'Patient Id', 'Name', 'BirthDate', 'Address','City','Mobile' ],
    colModel : [ {
        name : 'patientId',
        index : 'patientId',
        width : 55
    }, {
        name : 'name',
        index : 'name',
        width : 200
    }, {
        name : 'birthdate',
        index : 'birthdate',
        width : 100,
        editable : true
    }, {
        name : 'address',
        index : 'address',
        editable : true,
        width : 80
    }, {
        name : 'city',
        index : 'city',
        editable : true,
        width : 80
    }, {
        name : 'mobile',
        index : 'mobile',
        editable : true,
        width : 80
    } ],
    rowNum : 10,
    rowList : [ 5, 10, 30 ],
    pager : '#pager',
    sortname : 'id',
    viewrecords : true,
    sortorder : "desc",
    caption : "Search Patient's List",
    width : 800,
    cellEdit : true,
});

我有一个类似上面的代码。

我想pid从这个 JSP 页面发送到控制器。我得到了pid,但是当我重新加载我的网页时。当我单击按钮时,我想要它而不重新加载页面。

我怎样才能做到这一点?

请帮助我....

4

1 回答 1

0

您应该使用以下“函数”样式postData

url: "totalPatientList.html",
postData: {
    pid: function () {
        return $('#byId').val();
    }
}

在这种情况下,pid将在对服务器的每个请求上重新评估参数的值。有关更多详细信息,请参阅答案postData通过在对象中包含多个方法,您可以将多个参数发送到服务器。

于 2012-10-07T09:55:45.020 回答