上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: 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~ 阅读(195) 评论(0) 推荐(0)
摘要: /** * 各地图API坐标系统比较与转换; * WGS84坐标系:即地球坐标系,国际上通用的坐标系。设备一般包含GPS芯片或者北斗芯片获取的经纬度为WGS84地理坐标系, * 谷歌地图采用的是WGS84地理坐标系(中国范围除外); * GCJ02坐标系:即火星坐标系,是由中国国家测绘局制订的地理信息系统的坐标系统。由WGS84坐标系经加密后的坐标系。 * 谷歌中国地图和搜搜... 阅读全文
posted @ 2016-03-30 11:21 Liu66~ 阅读(4795) 评论(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~ 阅读(2220) 评论(0) 推荐(1)
摘要: 1 事件注册 2 3 平常我们绑定事件的时候用dom.onxxxx=function(){}的形式 4 这种方式是给元素的onxxxx属性赋值,只能绑定有一个处理句柄。 5 但很多时候我们需要绑定多个处理句柄到一个事件上,而且还可能要动态的增删某个处理句柄 6 下面的事件注册... 阅读全文
posted @ 2015-09-18 14:23 Liu66~ 阅读(196) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2015-08-29 13:42 Liu66~ 阅读(389) 评论(0) 推荐(0)
摘要: 先删除所有主键alter table tableName drop primary key;然后添加主键alter table tableName primary key(id);//如果是联合主键,则用逗号分隔,如 (id,code,card); 阅读全文
posted @ 2015-07-02 16:36 Liu66~ 阅读(209) 评论(0) 推荐(0)
摘要: 来源:http://www.centoscn.com/CentOS/2014/0708/3268.html下载CentOS-7.0-1406的时候,有很多可选则的版本,对于初学者来说,不知道选择哪个好,下面做一下简单介绍:CentOS-7.0-1406 本站下载地址:http://www.cento... 阅读全文
posted @ 2015-06-30 22:26 Liu66~ 阅读(645) 评论(0) 推荐(0)
摘要: PHPIniDir "D:/php-5.3.5"LoadModule php5_module "D:/php-5.3.5/php5apache2_2.dll"AddType application/x-httpd-php .php 阅读全文
posted @ 2015-06-30 14:27 Liu66~ 阅读(413) 评论(0) 推荐(0)
摘要: var treeObj = $.fn.zTree.getZTreeObj("treeDemo");var node = treeObj.getNodeByParam("id", "370000");treeObj.selectNode(node);setting.callback.onClick =... 阅读全文
posted @ 2015-06-17 11:05 Liu66~ 阅读(22039) 评论(2) 推荐(0)
摘要: //首先将折线上的坐标点存入一个数组中var arr = [pt1,pt2,pt3], brr = [], i = 0;while(i < arr.length){ //这样可以按照画线的顺序获取相邻的两个坐标点 var p1 = arr[i+1], p2 = ... 阅读全文
posted @ 2015-05-29 21:22 Liu66~ 阅读(1514) 评论(1) 推荐(0)
摘要: distanceTo: function(point) { var distance = 0.0; if ((this.x != null) && (this.y != null) && (point != null) && (point.x != null) && (point.... 阅读全文
posted @ 2015-05-27 21:43 Liu66~ 阅读(3120) 评论(0) 推荐(0)
摘要: a.html hello world!!! b.html 哈哈点击 阅读全文
posted @ 2015-05-13 22:15 Liu66~ 阅读(845) 评论(0) 推荐(0)
摘要: 进入BIOS - Security - Virtualization - Intel (R)Virtualization Technology 将 Disabled 改为 Enabled 即可 阅读全文
posted @ 2015-04-30 23:42 Liu66~ 阅读(197) 评论(0) 推荐(0)
摘要: 打开注册表HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontLink\SystemLink在右侧找到Microsoft YaHei 双击或者右键修改,然后在最后一行输上BATANG.TTC.Batang 重启电脑即... 阅读全文
posted @ 2015-04-30 23:36 Liu66~ 阅读(205) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2015-04-22 22:03 Liu66~ 阅读(1820) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页