摘要: $(function() { var myDate = new Date; var year = myDate.getFullYear(); //获取当前年 var mon = myDate.getMonth() + 1; //获取当前月 var date = myDate.getDate(); / 阅读全文
posted @ 2019-12-16 15:31 大da脸 阅读(3156) 评论(0) 推荐(0) 编辑
摘要: 写了一个一般处理程序来做接口,由于字段Content是文本,长度可能很长,鉴于这个原因,所以不能GET请求 所以问题来了,当我改成POST请求,自己使用HttpHelper类来写了一个Demo code var result = new HttpHelper().GetHtml(new HttpItem() { URL = "http://localhost:24885/Comment.ashx" 阅读全文
posted @ 2019-12-16 08:22 大da脸 阅读(2709) 评论(0) 推荐(0) 编辑