前台:
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 “”;
}