06 2019 档案
摘要:$(".back_top").click(function () { var sc = $(window).scrollTop(); $('body,html').animate({ scrollTop: 0 }, 500); })
阅读全文
摘要:body { -moz-user-select: none; /*火狐*/ -webkit-user-select: none; /*webkit浏览器*/ -ms-user-select: none; /*IE10*/ -khtml-user-select: none; /*早期浏览器*/ ...
阅读全文
摘要:INSERT INTO A(列1,列2,列3) SELECT 1 as 列1,列2,1 as 列3 FROM B where RoleId = 1
阅读全文
摘要:https://www.cnblogs.com/weimingxin/p/8954130.html
阅读全文
摘要:SELECT *, Age= datediff(yy,cast(case when substring(PersonalId,7,1) in ('1','2') /*若第7位不是'1'或'2'则表示是15位身份证编码规则*/ then substring(PersonalId,7,8) else '19' + substring(PersonalId,7,6) end as da...
阅读全文
摘要:select * from ( values (1,'小学'), (2,'初中'),(3,'高中')) AS Education ( EducationId,EducationName )
阅读全文
摘要:/// /// 模板下载 /// /// public ActionResult Download() { // 防IE文件名乱码 var fileName = HttpUtility.UrlEncode("模板.xlsx", System.Text.Enco...
阅读全文
摘要:解决方法:只需在done回调函数执行以下方法
阅读全文
摘要:select * from Table1 where CONVERT(nvarchar(50),CreateTime,120) like '%2019'
阅读全文
摘要:第一 xml文件必须为 *.hbm.xml 第二 设置xml文件为嵌入的资源,用鼠标点击右键 然后生成操作里 选择嵌入的资源即可解决。 https://www.cnblogs.com/lyj/
阅读全文