04 2015 档案
Optimized Jquery Selector
摘要:1.Priority use ID selector2.Add TagName before Class selector3.Never add Tag before ID, because ID is unique4.Use find() instead of children()5.Chain ... 阅读全文
posted @ 2015-04-19 18:03 aoun 阅读(127) 评论(0) 推荐(0)
常用CSS属性
摘要:1.清除浮动 overflow: hidden; 阅读全文
posted @ 2015-04-19 16:44 aoun 阅读(124) 评论(0) 推荐(0)
表格 隔行换色
摘要:1.原生JS实现1 2.Jquery实现1 1 阅读全文
posted @ 2015-04-18 17:58 aoun 阅读(141) 评论(0) 推荐(0)
sublime 常用快捷键
摘要:1.复制并插入当前行 ctrl + shift + d 阅读全文
posted @ 2015-04-18 14:10 aoun 阅读(149) 评论(0) 推荐(0)
First Juery Program
摘要:1 2 3 4 5 6 7 12 13 阅读全文
posted @ 2015-04-17 21:46 aoun 阅读(127) 评论(0) 推荐(0)
sublime FAQ
摘要:1.如何启动代码自动补全 http://jingyan.baidu.com/article/6079ad0e78c9e328ff86dbdc.html2.Sublime Text 2 安装Package Control和插件的两种方法 http://www.cnblogs.com/ldm1989... 阅读全文
posted @ 2015-04-16 22:49 aoun 阅读(93) 评论(0) 推荐(0)
计算机系统启动过程
摘要:1.主板BIOS硬件自检 (BIOS存储在主板Flash或ROM芯片,检测关键设备是否正常)2.磁盘MBR3.活动分区DBR4.OS引导程序(比如NTLDR)5.OS Kernel6.Driver And Service7.Program 阅读全文
posted @ 2015-04-14 21:31 aoun 阅读(156) 评论(0) 推荐(0)
C# 数据库写入简单示例
摘要:private int UpdateDB(string fname, string md5, int type) { string sql = @"insert into tb_hash(fname, uuid, state) values(@fname, @u... 阅读全文
posted @ 2015-04-12 08:41 aoun 阅读(2334) 评论(0) 推荐(0)
C# 文件上传简单示例
摘要:Default.aspx 文件上传测试 Default.aspx.cs protected void BtnUpload_Click(object sender, EventArgs e) { ... 阅读全文
posted @ 2015-04-12 08:19 aoun 阅读(419) 评论(0) 推荐(0)
jquery 过滤选择器
摘要:基本过滤选择器: 1. first 选取第一个元素 2. last 选取最后一个元素 3. not 排除元素 4. 阅读全文
posted @ 2015-04-12 00:06 aoun 阅读(145) 评论(0) 推荐(0)