文章列表
$.getJSON("MailTest.ashx", { to: addr, mid: id }, function (json) {
if (json.result == "OK") {
alert("发送成功!请查收");
} else {
alert("发送失败!");
}
});
以下的JS ...