2017年1月24日

摘要: //表格展示 $("#tt").datagrid({ columns:[[ {field:'itemid',title:'Item ID',width:80,sortable:true,editor:'text'}, {field:'productid',title:'Product ID',width:80,sortable:true,editor:'... 阅读全文
posted @ 2017-01-24 16:01 邹敏向日葵 阅读(325) 评论(0) 推荐(0) 编辑

2017年1月11日

摘要: 1chrome代理插件下载: https://github.com/FelisCatus/SwitchyOmega/wiki/SwitchyOmega-%E6%96%B0%E5%8A%9F%E8%83%BD 2规则列表网址: https://raw.githubusercontent.com/gfw 阅读全文
posted @ 2017-01-11 12:29 邹敏向日葵 阅读(19) 评论(0) 推荐(0) 编辑

2016年12月13日

摘要: 1 应用场景:文章比较长,只加载部分,当到页面底部触发获取更多数据。 2 如图,监听滚动条的位置,触发事件,转化为求X的长度, 3 实例代码: 阅读全文
posted @ 2016-12-13 14:34 邹敏向日葵 阅读(108) 评论(0) 推荐(0) 编辑

2016年12月8日

摘要: step 1. 读入第一个代码块。 step 2. 做语法分析,有错则报语法错误(比如括号不匹配等),并跳转到step5。 step 3. 对var变量和function定义做“预编译处理”(永远不会报错的,因为只解析正确的声明)。 step 4. 执行代码段,有错则报错(比如变量未定义)。 ste 阅读全文
posted @ 2016-12-08 12:09 邹敏向日葵 阅读(100) 评论(0) 推荐(0) 编辑

2016年12月6日

摘要: 1 应用场景:js的异步加载,在get,post,ajax异步加载的时候,可能对应的请求没有完成,这时需要使用请求回来的数据作为参数调用其他函数,这时就需要使用回调函数。 2 回调函数作用:等待函数调用完毕再调用。 3 应用场景一: 阅读全文
posted @ 2016-12-06 14:37 邹敏向日葵 阅读(385) 评论(0) 推荐(0) 编辑

2016年11月29日

摘要: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-web-security --user-data-dir=D:\chrome_data" --disable-web-security --user-dat 阅读全文
posted @ 2016-11-29 10:31 邹敏向日葵 阅读(122) 评论(0) 推荐(0) 编辑

2016年10月18日

摘要: 一、将ACCESS表导出为CSV文件:Select * INTO [TEXT;FMT=CSV;DELIMITED;HDR=YES;DATABASE=E:\temp\].test.csv FROM Sheet2; 二、导入CSV文件并生成新的ACCESS表:Select * INTO test FRO 阅读全文
posted @ 2016-10-18 15:09 邹敏向日葵 阅读(855) 评论(0) 推荐(0) 编辑

2016年9月22日

摘要: 三大类: 1 流式布局:块元素(占一行)和行元素。 2 浮动布局:float 3 绝对定位:position 阅读全文
posted @ 2016-09-22 14:47 邹敏向日葵 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 导航条(简单易用的导航) 布局小demo(无表格的首页) 阅读全文
posted @ 2016-09-22 14:41 邹敏向日葵 阅读(199) 评论(0) 推荐(0) 编辑

2016年9月19日

摘要: using System; using System.Configuration; using System.Reflection; namespace ceshi { public class Class1 { public static readonly string Token; public static readonly string... 阅读全文
posted @ 2016-09-19 17:05 邹敏向日葵 阅读(134) 评论(0) 推荐(0) 编辑

导航