AJAX异步调用

时间:2023-06-27 18:11:20

前台:

function readygo(v) {
            $.ajax({
                type: "post",
                contentType: "application/json",
                data: "{ v: ''}",
                url: "页面/t",
                dataType: "json",
                success: function (data) {
                    if (data.d != "") {
                    }
                }
            });
        }

后台:

[WebMethod]
        public static string t(string v)
        {
            return “”;
        }