上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: Ubuntu使用教程——截屏 http://www.linuxidc.com/Linux/2014-02/96827.htm Ubuntu下使用(xfce截屏)及GNOME下一个好用的截屏工具 http://www.linuxidc.com/Linux/2012-10/71936.htm Linux 阅读全文
posted @ 2017-03-24 11:09 Liu66~ 阅读(970) 评论(0) 推荐(0) 编辑
摘要: 生成html代码之前: $(".main_body_con").mCustomScrollbar("destroy"); html添加到页面之后: $(".main_body_con").mCustomScrollbar(); 例如: var html = ''; $(".main_body_con").mCustomScrollbar("destroy"); $('body').ap... 阅读全文
posted @ 2017-03-20 11:45 Liu66~ 阅读(3235) 评论(1) 推荐(2) 编辑
摘要: $column = PHPExcel_Cell::stringFromColumnIndex(index);//index对应的就是列,从0开始 $objPHPExcel->getActiveSheet()->setCellValue($column, $value); 结果: A,B,C,。。。Z 阅读全文
posted @ 2017-02-25 14:23 Liu66~ 阅读(930) 评论(0) 推荐(0) 编辑
摘要: 在excel中如果在一个默认的格中输入或复制超长数字字符串,它会显示为科学计算法,例如身份证号码,解决方法是把表格设置文本格式或在输入前加一个单引号。 使用PHPExcel来生成excel,也会遇到同样的问题,解决方法有三种:1、设置单元格为文本 更多的格式可以在PHPExcel/Style/Num 阅读全文
posted @ 2017-02-25 14:16 Liu66~ 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1 function changeURLPar(url, ref, value) { 2 var str = ""; 3 if (url.indexOf('?') != -1) 4 str = url.substr(url.indexOf('?') + 1); 5 else 6 return url + "?" + ref + ... 阅读全文
posted @ 2017-02-18 16:30 Liu66~ 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 6 7 8 9 10 11 12 阅读全文
posted @ 2016-09-04 19:33 Liu66~ 阅读(1046) 评论(0) 推荐(1) 编辑
摘要: https://pan.baidu.com/s/1dFBNik5 阅读全文
posted @ 2016-09-02 10:27 Liu66~ 阅读(135) 评论(0) 推荐(0) 编辑
摘要: HTML表格导出到EXCEL 第一列 第二列 第三列 a b 1 2 3 4 ... 阅读全文
posted @ 2016-08-21 16:12 Liu66~ 阅读(2084) 评论(0) 推荐(0) 编辑
摘要: 第一列 第二列第二列第二列第二列第二列第二列 第三列 阅读全文
posted @ 2016-07-05 22:00 Liu66~ 阅读(1353) 评论(0) 推荐(0) 编辑
摘要: 1234567891011121314151617181920212223242526272829 data数据格式:1,a,a1,a21,b,b1,b21,c,c1,c22,d,d1,d22,e,e1,e2 写成如下格式:var code = { '1' : { 'a' : ['a1', 'a2' 阅读全文
posted @ 2016-04-08 21:24 Liu66~ 阅读(193) 评论(0) 推荐(0) 编辑
摘要: /** * 各地图API坐标系统比较与转换; * WGS84坐标系:即地球坐标系,国际上通用的坐标系。设备一般包含GPS芯片或者北斗芯片获取的经纬度为WGS84地理坐标系, * 谷歌地图采用的是WGS84地理坐标系(中国范围除外); * GCJ02坐标系:即火星坐标系,是由中国国家测绘局制订的地理信息系统的坐标系统。由WGS84坐标系经加密后的坐标系。 * 谷歌中国地图和搜搜... 阅读全文
posted @ 2016-03-30 11:21 Liu66~ 阅读(4500) 评论(1) 推荐(1) 编辑
摘要: svg.append('path').attr({ id: 'mypath', d: 'M50 100Q350 50 350 250Q250 50 50 250' })path 的指令有:指令 参数 指令说明M x y 起始点的 x, y 座标(move... 阅读全文
posted @ 2015-10-15 15:14 Liu66~ 阅读(2152) 评论(0) 推荐(1) 编辑
摘要: 1 事件注册 2 3 平常我们绑定事件的时候用dom.onxxxx=function(){}的形式 4 这种方式是给元素的onxxxx属性赋值,只能绑定有一个处理句柄。 5 但很多时候我们需要绑定多个处理句柄到一个事件上,而且还可能要动态的增删某个处理句柄 6 下面的事件注册... 阅读全文
posted @ 2015-09-18 14:23 Liu66~ 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-08-29 13:42 Liu66~ 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 先删除所有主键alter table tableName drop primary key;然后添加主键alter table tableName primary key(id);//如果是联合主键,则用逗号分隔,如 (id,code,card); 阅读全文
posted @ 2015-07-02 16:36 Liu66~ 阅读(197) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页