摘要: using System; using System.Text; using System.Net.Mail; using System.Net; using System.Linq; using System.Text.RegularExpressions; namespace Dos.ORM.Common.Helpers { /// /// 发送邮件帮助类 ///... 阅读全文
posted @ 2017-12-26 09:11 你也很优秀 阅读(368) 评论(0) 推荐(0) 编辑
摘要: //获取当前日期(年月日),如:2017-12-18 function getNowDate() { var dd = new Date(); var y = dd.getFullYear(); //获取当前月份的日期,不足10补0 var m = (dd.getMonth() + 1) 0 ? new Date(star... 阅读全文
posted @ 2017-12-26 09:09 你也很优秀 阅读(984) 评论(0) 推荐(0) 编辑
摘要: //jQuery实现textarea高度根据内容自适应 $.fn.extend({ txtaAutoHeight: function () { return this.each(function () { var $this = $(this); ... 阅读全文
posted @ 2017-12-26 09:07 你也很优秀 阅读(1212) 评论(0) 推荐(0) 编辑