JQ 轻松学会$.get(),$.post(),$ajax()的作用和用法

1.$.post():代表Post到指定界面,和窗体的提交Form一样的效果
//Post到指定界面,和窗体的提交Form一样的效果
function postFrom() {
    $.post("Login.aspx", {
        cSysCode: "0", cPassword: "1", uID: "chengw", cNameOrcCode: "0", OPType: "1"
    }, function (result) {
        alert(result);
        console.log(result);
    });
}

 

JQ 轻松学会$.get(),$.post(),$ajax()的作用和用法

上一篇:66、图书管理系统及ajax简介


下一篇:VSCode 快速生成.vue基本模板、发送http请求模板