jQuery如何获取Json中的某个数据。

function f_save(item, dialog) {
    var issave = dialog.frame.f_save();   //issave为Json数据
    var a = $.parseJSON(issave);      //接受一个标准格式的 JSON 字符串,并返回解析后的 JavaScript 值
    if (a.doctor_on_duty_date == "")  //判断Json中的某个数据是否为空。
    {
        $.ligerDialog.error("请选择排班日期!");
        return;
    }
   

    if (issave) {
        $.ligerDialog.waitting('数据保存中,请稍候...');
        $.ajax({
            url: "../../../Handler/AppointmentManager/ReorganiseListHandler.ashx", type: "POST",
            data: { Action: "Add_SchedulingTable", json: issave },
            success: function (responseText) {
                $.ligerDialog.closeWaitting();

                if (responseText.IsSuccess) {
                    dialog.close();
                    $.ligerDialog.success('操作成功!');
                    manager.loadData();
                }
                else {
                    $.ligerDialog.error('排班资料存在,请查询后重新录入');
                }
            },
            error: function () {
                $.ligerDialog.closeWaitting();
                $.ligerDialog.error('排班资料输入错误,请联系管理员');
            },
            dataType: "json"
        });
    }
};

你可能感兴趣的:(Jquery)