zoukankan      html  css  js  c++  java
  • ajax(一)

                $.ajax({
                    type: "post",
                    async: false,
                    url: "ReadStaffMange.aspx/AddReadStaff",
                    data: "{DocCode:"" + $("#hideDocCode").val() + "",DocNo:"" + $("#hideDocNo").val() + "",StaffNos:"" + $("#txtStaffNo").val() + ""}",
                    datatype: "json",
                    contentType: "application/json",
                    success: function (data) {
                        if (data.d == "1") {
                            location.reload();
                        }
                        else {
                            layer.alert(data.d);
                        }
                    }
                });
  • 相关阅读:
    视觉里程计VO-直接法
    Linux安装libcholmod-dev找不到的解决方法
    Levenberg-Marquadt Method
    Gauss-Newton Method
    CMake
    方差 标准差 协方差
    SFM
    矩阵分解
    kvm学习笔记
    python学习笔记
  • 原文地址:https://www.cnblogs.com/ljj4490/p/7210248.html
Copyright © 2011-2022 走看看