日期:2014-05-16 浏览次数:20484 次
$.ajax({
type : "post",
url : "AddNews?title=" + encodeURI(encodeURI(title))
+ "&padCon=" + encodeURI(encodeURI(padCon))
+ "&context=" + encodeURI(encodeURI(context)),
success : function(msg) {
if ("success" == msg) {
alert("新闻发布成功!");
location.href = "News";
} else {
alert(msg);
}
} $.ajax({
type: "post",
data: { title: title, padCon: padCon, context: context },////////
url: "AddNews",
success: function (msg) {
if ("success" == msg) {
alert("新闻发布成功!");
location.href = "News";
} else {
alert(msg);
}
}
});