摘要:
1 var comment = {}; 2 comment.postId = 2892826;//每篇博客对应一个唯一的标识ID,必须 3 comment.Body = '123';//评论内容,必须 4 comment.ParentCommentID = 0;//默认0,对现有评论进行评论时,为评论ID,必须 5 $.ajax({ 6 url: '/mvc/PostComment/New.aspx', 7 data: JSON.stringify(comment), 8 ... 阅读全文