2020-06-29

$.ajax({
type: “post”,
url: “.ashx”, //这个提交的路径记住是一个ashx的页面
data: {}, //传的参数
success: function (res) {//成功的函数
if (res != “”) {
var Mail = document.getElementById("");
var tab = document.getElementById("");
Mail.style.height = “0px”;
tab.innerHTML = res;
Touch_Mail();
} else { }

        },
        error: function () {
            alert("程序异常!"); return;
        }
    });

猜你喜欢

转载自blog.csdn.net/weixin_45062076/article/details/107013157