会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
妖狐鬼魅
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
下一页
2018年1月25日
Unix时间戳转换
摘要: Unix时间戳在线转换工具 http://tools.sharejs.com/unixtime.html tool.chinaz.com/Tools/unixtime.aspx
阅读全文
posted @ 2018-01-25 15:50 妖狐鬼魅
阅读(328)
评论(0)
推荐(0)
2017年12月21日
fullCalendar 日历插件
摘要: 官网: https://fullcalendar.io/ fullCalendar:中文API http://blog.csdn.net/qw_xingzhe/article/details/44920943 FullCalendar 官方文档翻译 http://www.cnblogs.com/my
阅读全文
posted @ 2017-12-21 15:57 妖狐鬼魅
阅读(355)
评论(0)
推荐(0)
2017年12月19日
鼠标滑到底部时自动加载数据
摘要: //签到列表加载数据 鼠标滑到底部时自动分页 $("#Check_in_list").scroll(function () { var $this = $(this), viewH = $(this).height(),//可见高度 cont...
阅读全文
posted @ 2017-12-19 13:47 妖狐鬼魅
阅读(280)
评论(0)
推荐(0)
2017年12月12日
Reset.css
摘要: html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, st...
阅读全文
posted @ 2017-12-12 15:20 妖狐鬼魅
阅读(126)
评论(0)
推荐(0)
2017年8月1日
默认IE浏览器版本
摘要: 默认使用IE8打开页面 IIS设置HTTP响应标头: X-UA-Compatible IE=EmulateIE8 页面设置: <meta http-equiv=“X-UA-Compatible” content=“IE=8″> 或 <meta http-equiv="X-UA-Compatible"
阅读全文
posted @ 2017-08-01 11:35 妖狐鬼魅
阅读(285)
评论(0)
推荐(0)
2017年7月21日
JS实现html元素中存JSON数据
摘要: var json="{"PSDH":""+v.PSDH+"", "DDMXBH":""+v.DDMXBH+"", "FPBH":""+v.FPBH+"", "FPDM":""+v.FPDM+"", "FP
阅读全文
posted @ 2017-07-21 16:38 妖狐鬼魅
阅读(3439)
评论(0)
推荐(0)
XMLHelper
摘要: public class XMLHelper { #region 反序列化 /// /// 反序列化 /// /// 类型 /// XML字符串 /// public static object Deserialize(Type type, string...
阅读全文
posted @ 2017-07-21 14:19 妖狐鬼魅
阅读(437)
评论(0)
推荐(0)
2017年7月4日
SQL插入数据库时获取主键或字段值
摘要: insert A(a,b)values(1,2); select @@identity --获取主键值 方式一 select SCOPE_IDENTITY() --获取主键值 方式二 --获取任意字段值 insert A(a,b)OUTPUT inserted.a values(1,2); insert A(a,b)OUTPUT inserted.b values(1,2);
阅读全文
posted @ 2017-07-04 15:54 妖狐鬼魅
阅读(732)
评论(0)
推荐(0)
2017年6月23日
日志类:LogManager
摘要: public class LogManager { private static string logPath = string.Empty; /// /// 保存日志的文件夹,web默认在bin文件夹,如需指定文件夹:HttpContext.Current.Server.MapPath("~/Journal") + "\\";。 ...
阅读全文
posted @ 2017-06-23 12:56 妖狐鬼魅
阅读(2618)
评论(0)
推荐(0)
2017年6月19日
最全面的常用正则表达式大全
摘要: 一、校验数字的表达式 1 数字:^[0-9]*$ 2 n位的数字:^\d{n}$ 3 至少n位的数字:^\d{n,}$ 4 m-n位的数字:^\d{m,n}$ 5 零和非零开头的数字:^(0|[1-9][0-9]*)$ 6 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9]
阅读全文
posted @ 2017-06-19 12:28 妖狐鬼魅
阅读(174)
评论(0)
推荐(0)
上一页
1
···
5
6
7
8
9
10
11
12
下一页
公告