自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(82)
  • 资源 (30)
  • 收藏
  • 关注

转载 树莓派搭建samba

安装sudo apt-get install samba samba-common-bin挂载移动硬盘sudo apt-get install ntfs-3gsudo mkdir /SAMBA#可以通过sudo fdisk -l 查看移动硬盘路径sudo mount /dev/sda1 /SAMBA sudo vim /etc/fstab#最后一行加上/dev/sda1 /SAMBA n

2017-12-08 01:55:43 503

原创 命令行神器

mosh对于网络不好的vps来说,觉得推荐https://mosh.org

2017-05-03 21:29:06 446

原创 vscode 搭建go开发环境

安装go这个按官方文档装好就行了。获取Go相关工具以下为MAC终端,linux应该一样, windows 不管了。。。 终端运行以下命令cd ~mkdir gotools #这个文件夹可以用自己命名 以下用到的地方全部替换自己的就可以了cd gotoolsexport GOPATH=$(pwd)go get -u -v github.com/nsf/gocodego get -u -v g

2017-01-06 11:01:32 7829

原创 letsencrypt 快速入手

系统环境ubuntu 14.04 以及以上 (以下按道理也可以) nginx本文的命令都是 sudo 权限下进行的操作准备工作将需要进行https的网站域名的dns 解析到当前服务器。停止服务器上的 nginxservice nginx stop安装 letsencryptapt-get install letsencryptletsencrypt certonly -d domain

2016-08-26 11:08:58 2188

原创 【备忘】 vscode 必备插件

vscode-icons显示文件图标preview预览 markdown, html等guides显示代码辅助线

2016-08-15 10:08:13 10250

转载 centos 搭建PPTP

转载针对 centos 6.x 自 http://www.dabu.info/centos6-4-structures-pptp-vpn.html安装PPTP先装PPP和iptablesyum install -y perl ppp iptablespptp版本选择最好进入 http://poptop.sourceforge.net/yum/stable/rhel6/ 选择合适的版本32位系统选

2016-05-18 11:02:23 601

原创 【备忘】

shell 同步时间 ntpdate pool.ntp.org

2016-04-04 22:23:17 338

转载 [备忘]Nginx 禁止IP访问及未绑定的域名跳转

转载自: http://www.linuxidc.com/Linux/2011-04/34368.htm今天要在Nginx上设置禁止通过IP访问服务器,只能通过域名访问,这样做是为了避免别人把未备案的域名解析到自己的服务器IP而导致服务器被断网,从网络上搜到以下解决方案:Nginx的默认虚拟主机在用户通过IP访问,或者通过未设置的域名访问(比如有人把他自己的域名指向了你的ip)的时候生效最关键的一点

2015-12-29 10:13:48 2037

原创 [备忘] [坑坑坑!]windows tar 压缩文件夹到指定目录下面

命令 tar -cf "/./C/Users/xx-user/test.tar" .注意的地方: 绝对路径应该使用这样的方式 /./C/ 这样才是C盘根目录,别问为什么,,windows下就这么奇葩

2015-12-28 15:04:02 1108

原创 Webstorm 快捷键

快速打开文件ctrl + shift + r

2015-11-15 21:21:30 432

原创 git 自动部署

1. Server 设置cd ~mkdir project.gitcd project.gitgit init --bare 2. Client 设置git remote add remote-server ssh://user@remote-ip/path/to/project.gitgit push remote-server3.Server设置git clone project.git

2015-11-10 15:49:19 611

原创 [备忘] linux 有用却不常用命令

1. 常看当前已经登陆用户 w查看当前流量信息 iftop待补充

2015-10-10 15:47:58 400

转载 [备忘] redis 生产环境配置

转载自:http://blog.chinaunix.net/uid-30111490-id-4819701.htmlredis配置详解# 默认情况下,redis不是在后台模式运行的,如果需要在后台进程运行,把该项的值更改为yes,默认为no daemonize no #redis服务以后台进程运行的时候,Redis默认会把pid写入/var/run/redis.pid文件组pi

2015-09-30 16:11:16 2422

原创 微信开发公众号本地调试

使用vps的ssh端口转发功能,将请求转发到本地。1. 设置vps 的ngxinserver { listen 80; server_name wechat.heartwith.me; location / { proxy_pass http://127.0.0.1:10000; proxy_set_heade

2015-06-05 10:30:38 1937

原创 基本的http压力测试工具

1. ab     apache bench 安装 sudo apt-get install apache-utils22. webbench   简单的可以使用这个

2015-06-03 16:23:27 1042

原创 [备忘] linux 有用却不常用命令

1. 常看当前已经登陆用户w2. 查看当前流量信息iftop待补充

2015-05-25 10:40:35 505

原创 visual studio code使用------ 代码提示

微软出了个编辑器,vscode,今天才刚使用,看到官方文档说支持node等各种语言的语法感知(函数自动提示),于是赶紧看看效果TSD你一开始使用就发现,尼玛说好的函数提示呢?鬼影都没看见一个。好吧,仔细阅读官方文档后发现,为了支持各种语言,vscode采用了类似插件的形式提供正则表达分析,从而完成函数提醒。这个工具就是tsd.至于它是不是微软搞出来的,还真不清楚,以前没用过。首先安装(具体文档请gi

2015-05-20 12:39:20 40152 3

转载 备忘 socks 转http

proxyAddress ="0.0.0.0"proxyPort = 8118socksParentProxy = "127.0.0.1:12345"socksProxyType = socks5allowedClients = 127.0.0.1proxyPort 是 HTTP Proxy 端口地址socksParentProxy 表示通过

2015-04-30 00:57:23 572

原创 [备忘]linux 模拟鼠标动作 工具

xdotools

2015-03-27 11:21:31 587

原创 [备忘] 命令行连接无线网 linux

原文:http://www.ghacks.net/2009/04/14/connect-to-a-wireless-network-via-command-line/需要4个软件ifconfig  启用无线网卡iwlist  寻找wifi 热点iwconfig 配置wifi 连接信息dhclient  获取自动ip一般而言 , 无限网卡对

2015-03-25 15:34:36 494

原创 浅谈Q的基本实现

从整个的角度来说,Q的实现其实是闭包的一个应用,下文简单说明实现一下Q的基本功能。GitHub Q的API实现Q的功能,先了解一下Q的API通过 https://github.com/kriskowal/q 截取最简单那部分的文档如下:var deferred = Q.defer();FS.readFile("foo.txt", "utf-8", function (error, text) {

2015-03-12 01:20:15 1143

原创 【备忘】chrome插件

Animated Gif Capturepostman

2015-01-09 16:51:45 479

原创 【备忘】 git log

git log -1 --pretty=format:"{\"author\":\"%an\", \"authorEmail\": \"%ae\",\"modifyDate\": \"%ad\",\"commiter\":\"%cn\", \"commiterEmail\": \"%ce\",\"commitDate"\: \"%cd\"\"hash\": \"%h\", \"Ha

2014-12-22 10:21:05 455

原创 【备忘】nginx 配置 某个路径代理

server { listen 80; #rewrite ^/\w+$ /main.html break; server_name aaa.com; location ^~ /api/ { proxy_pass http://xxx.com;

2014-12-15 09:36:30 836

原创 proxy bash

#!/bin/bashdir=/home/ec/software/goagent/localnohup python "${dir}/proxy.py" > '/home/ec/logs/goagent.log' 2>&1 &export http_proxy="http://localhost:8087"

2014-12-05 09:21:06 628

原创 [备忘] git http(https) 免密码提交

由于公司内网22端口被封,只能拨vpn

2014-11-07 16:48:45 3702 2

转载 nohub 管理后台任务

nohup Command [ Arg ... ] [ & ]

2014-09-28 15:57:07 1515

转载 启用fcitx-qimpanel面板程序

请启用fcitx-qimpanel面板程序,以便更好的享受搜狗输入法!重载 fcitx, 开启 qimpanel:fcitx -r --enable fcitx-qimpanel 然后启动 fcitx-qimpanel:fcitx-qimpanel(这里本人用了fcitx -r --enable fcitx-qimpanel&&fcitx-qimpanel的方式去处理,以便开机

2014-05-27 09:09:50 2706

转载 ubuntu sublime无法输入中文问题

/*sublime-imfix.cUse LD_PRELOAD to interpose some function to fix sublime input method support for linux.By Cjacker Huang gcc -shared -o libsublime-imfix.so sublime_imfix.c `pkg-config --libs --

2014-04-30 09:00:05 915

原创 实时开发框架Meteor API解读系列<八> Timers

Timers写在前面的话本篇博客简单介绍Timer本篇博客地址:如果可能请阅读官方文档:http://docs.meteor.com/#timers在Meteor中,不能直接使用setTimeout 和setInterval,如果这样使用你可能会得到出错的结果,后者meteor直接报错,因为meteor是运行在Fibers中的(以后会详细说明)所以应该用Me

2014-04-17 12:08:25 1552

原创 实时开发框架Meteor API解读系列<七> Collection --01

本篇博客主要讲 Collection,由于该部分比较长,会用两到三篇博客的内容描述.其实这个部分东西不好写博客,因为涉及到的都是一些操作语句,这个和mongodb的api有关使用的meteor版本为0.8.0老话重提 ,尽量以官方文档为主

2014-04-16 01:05:26 2903

原创 实时开发框架Meteor 实际应用系列<一>---文件的上传和下载[补充]

接这篇博客。http://blog.csdn.net/a6383277/article/details/23023269上面

2014-04-14 14:12:25 1935

原创 实时开发框架Meteor API解读系列<六> DDP

本篇博客主要讲 DDP使用的meteor版本为0.8.0老话重提 ,尽量以官方文档为主本篇博客有不正确的地方在所难免,如有发现望指出。本篇博客地址:http://blog.csdn.net/a6383277/article/details/23656929 转载请注明出处,谢谢

2014-04-14 09:26:58 4318 1

原创 实时开发框架Meteor API解读系列<五>Session

写在前面的话本篇博客主要讲Session使用的meteor版本为0.8.0老话重提 ,尽量以官方文档为主本篇博客有不正确的地方在所难免,如有发现望指出。本篇博客地址:http://blog.csdn.net/a6383277/article/details/23421611 转载请注明出处,谢谢SessionMeteor里面的Session不是我们以前接触过服务

2014-04-11 09:08:33 2284

原创 实时开发框架Meteor API解读系列<四>Server connections

写在前面的话该篇博客主要讲Server connections基于0.8.0版本本篇博客在ubuntu系统下操作。博客地址:http://blog.csdn.net/a6383277/article/details/23023269 转载请注明出处如有可能请阅读官方文档。博客内有错误遗漏之处望谅解和指出。谢谢Server connections这里的

2014-04-07 16:09:18 2602

原创 实时开发框架Meteor 实际应用系列<一>---文件的上传和下载

Meteor 更新至0.8.0以后,由于改动比较的

2014-04-06 15:00:13 4368 2

原创 实时开发框架Meteor API解读系列<三>Publish and Subscribe-(2)

写在前面的话该篇博客承接上一篇博客。该博客写的当天,Meteor 0.8.0发布,改动比较大,因为从本篇博客开始使用0.8.0版。由于本人对新版本没有实战开发,因此会有描写不到位的地方,忘谅解。本篇博客仅为参考。更多细节请阅读官方文档。publish 回调函数中 client端传递过来参数的使用。接着上一篇博客的源代码:publish.jsM

2014-03-29 17:58:53 2054 1

原创 实时开发框架Meteor API解读系列<三>Publish and Subscribe-(1)

写在前面的话本篇博客主要讲 publish和subscribe使用的meteor版本为0.7.0.1本篇博客主要是完善以前写过的一篇博客Meteor中subscribe和publish简单介绍老话重提 ,尽量以官方文档为主本篇博客有不正确的地方在所难免,如有发现望指出。本篇博客涉及到另外一个知识点 Collection,不会详说,将作为独立的博客进行说明。功能主要是

2014-03-28 01:04:32 2884

原创 实时开发框架Meteor API解读系列<二>Core

非常感谢关注我的Meteor系列博客.本篇博客涉及到的几个主要API是:Meteor.isClient,Meteor.isServer,Meteor.startup,Meteor.absoluteUrl,Meteor.settings,Meteor.release

2014-01-18 23:35:43 3039 3

原创 meteor 简单 视频教程

来自于我的百度网盘:分别是:00meteor在win7数据库无法打开解决办法02meteor应用目录介绍.rar03meteor数据推送和数据订阅.rar04Template.rar05Template事件处理.rarhttp://pan.baidu.com/s/1jGJo8zs

2014-01-17 09:20:17 1762

webstorm 配色方案 linux版

webstorm 配色方案 linux版 使用sublime风格

2015-12-28

webstorm 配色方案

windows版 使用sublime风格,自用。

2015-12-28

快乐Linux命令行

新手学习linux 循序渐进的一个好书。 微博名人推荐。

2014-10-14

Meteor API DDP demo

博客 http://blog.csdn.net/a6383277/article/details/23656929的示例代码

2014-04-15

Meteor Session demo

博客http://blog.csdn.net/a6383277/article/details/23421611 的示例代码

2014-04-11

meteor系列博客demo-004

博客 http://blog.csdn.net/a6383277/article/details/23100421涉及到的源码

2014-04-07

meteor系列博客demo-003

来自于meteor系列博客. API publish and subcribe describe

2014-03-28

meteor的router库

router在window下的包。可以在linux和windows在进行使用。具体使用请参考我的博客:http://blog.csdn.net/a6383277/article/details/17125775

2013-12-04

博客Meteor.render源码

博客 《Meteor.render 用法》 涉及到的代码

2013-11-14

Head First Servlets and JSP, 2nd Edition.pdf

Head First Servlets and JSP 第二版 纯英文 高清非扫描版本

2013-11-11

Head First JavaScript

Head First JavaScript。 js开发 学习资料。高清非扫描版本

2013-11-11

Head First Android Development.pdf

Head First Android Development ,高清非影印 纯英文版本。 安卓 Android开发。

2013-11-11

Head First Ajax

Head First Ajax.pdf 纯英文版本。非影印扫描版

2013-11-11

getting started with meteor

getting started with meteor meteor 入门教材

2013-11-06

d3.js 快速入门

d3的快速入门资料。纯英文版 Preface. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ix 1. Introduction. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Why Data Visualization? 1 Why Write Code? 2 Why Interactive? 2 Why on the Web? 3 What This Book Is 3 Who You Are 4 What This Book Is Not 5 Using Sample Code 5 Thank You 6 2. Introducing D3. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 What It Does 7 What It Doesn’t Do 8 Origins and Context 9 Alternatives 10 Easy Charts 10 Graph Visualizations 12 Geomapping 12 Almost from Scratch 13 Three-Dimensional 13 Tools Built with D3 14 3. Technology Fundamentals. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 The Web 15 HTML 17 Content Plus Structure 18 iii Adding Structure with Elements 19 Common Elements 20 Attributes 22 Classes and IDs 22 Comments 23 DOM 24 Developer Tools 24 Rendering and the Box Model 27 CSS 29 Selectors 29 Properties and Values 31 Comments 31 Referencing Styles 31 Inheritance, Cascading, and Specificity 33 JavaScript 35 Hello, Console 35 Variables 35 Other Variable Types 36 Arrays 36 Objects 37 Objects and Arrays 38 Mathematical Operators 40 Comparison Operators 41 Control Structures 41 Functions 43 Comments 44 Referencing Scripts 44 JavaScript Gotchas 45 SVG 49 The SVG Element 50 Simple Shapes 50 Styling SVG Elements 53 Layering and Drawing Order 54 Transparency 55 A Note on Compatibility 57 4. Setup. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59 Downloading D3 59 Referencing D3 60 Setting Up a Web Server 61 Terminal with Python 61 MAMP, WAMP, and LAMP 62 iv | Table of Contents Diving In 62 5. Data. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63 Generating Page Elements 63 Chaining Methods 65 One Link at a Time 66 The Hand-off 67 Going Chainless 67 Binding Data 67 In a Bind 67 Data 68 Please Make Your Selection 72 Bound and Determined 73 Using Your Data 76 High-Functioning 77 Data Wants to Be Held 78 Beyond Text 79 6. Drawing with Data. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81 Drawing divs 81 Setting Attributes 82 A Note on Classes 83 Back to the Bars 83 Setting Styles 84 The Power of data() 85 Random Data 87 Drawing SVGs 89 Create the SVG 89 Data-Driven Shapes 90 Pretty Colors, Oooh! 92 Making a Bar Chart 92 The Old Chart 93 The New Chart 93 Color 98 Labels 101 Making a Scatterplot 103 The Data 103 The Scatterplot 104 Size 105 Labels 106 Table of Contents | v Next Steps 107 7. Scales. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109 Apples and Pixels 109 Domains and Ranges 110 Normalization 111 Creating a Scale 111 Scaling the Scatterplot 112 d3.min() and d3.max() 112 Setting Up Dynamic Scales 114 Incorporating Scaled Values 114 Refining the Plot 115 Other Methods 119 Other Scales 119 8. Axes. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121 Introducing Axes 121 Setting Up an Axis 122 Cleaning It Up 123 Check for Ticks 126 Y Not? 127 Final Touches 128 Formatting Tick Labels 130 9. Updates, Transitions, and Motion. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 133 Modernizing the Bar Chart 133 Ordinal Scales, Explained 134 Round Bands Are All the Range These Days 136 Referencing the Ordinal Scale 136 Other Updates 137 Updating Data 137 Interaction via Event Listeners 138 Changing the Data 139 Updating the Visuals 139 Transitions 142 duration(), or How Long Is This Going to Take? 143 ease()-y Does It 144 Please Do Not delay() 145 Randomizing the Data 147 Updating Scales 150 Updating Axes 152 each() Transition Starts and Ends 153 vi | Table of Contents Other Kinds of Data Updates 161 Adding Values (and Elements) 161 Removing Values (and Elements) 166 Data Joins with Keys 169 Add and Remove: Combo Platter 174 Recap 176 10. Interactivity. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 177 Binding Event Listeners 177 Introducing Behaviors 178 Hover to Highlight 179 Grouping SVG Elements 184 Click to Sort 185 Tooltips 188 Default Browser Tooltips 189 SVG Element Tooltips 190 HTML div Tooltips 192 Consideration for Touch Devices 195 Moving Forward 195 11. Layouts. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 197 Pie Layout 198 Stack Layout 202 Force Layout 206 12. Geomapping. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 213 JSON, Meet GeoJSON 213 Paths 215 Projections 216 Choropleth 219 Adding Points 222 Acquiring and Parsing Geodata 226 Find Shapefiles 226 Choose a Resolution 226 Simplify the Shapes 228 Convert to GeoJSON 228 13. Exporting. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 233 Bitmaps 233 PDF 234 Table of Contents | vii SVG 235 A. Appendix: Further Study. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 241 Index. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 245

2013-10-10

D3.JS 基于javascript的图表展示库<六>-基本柱状图2

D3.JS 基于javascript的图表展示库<六>-基本柱状图2 博客地址 http://blog.csdn.net/a6383277/article/details/8768412

2013-04-07

D3.JS 基于javascript的图表展示库<五>-基本柱状图1

D3.JS 基于javascript的图表展示库<五>-基本柱状图1 博客地址http://blog.csdn.net/a6383277/article/details/8762638

2013-04-05

D3.JS 基于javascript的图表展示库<四>----基本元素选择与Table

D3.JS 基于javascript的图表展示库<四>----基本元素选择与Table 见博客http://blog.csdn.net/a6383277/article/details/8742906

2013-03-31

D3.JS 基于javascript的图表展示库<三>----基本元素绑定

D3.JS 基于javascript的图表展示库<三>----基本元素绑定 所对应的源码

2013-03-23

02基础选择器--select和selecAll,源码

博文 http://blog.csdn.net/a6383277/article/details/8683421 所对应的源代码

2013-03-17

Meteor的publish和subscrbe简单介绍

相关文章见我博客http://write.blog.csdn.net/postlist/1349771/all

2013-03-02

GitHub入门到精通

GitHub的入门到精通 非常适合新手学习 本人找了很多网站才找到这个,然后又花费事件把他们整理出来了,非常好,讲解非常详细,很有实用价值。 花费5个资源分下载觉得值得!

2012-12-12

CXF WebService实例

CXF WebService java实例 例子包括基本的 HelloWord列子 还有传递List ,Map的列子 另外还有webservice 文件下载上传的示例

2012-11-28

FlexPaper 二次开发教程

FlexPaper 二次开发教程的二次开发 使用 FlexPaper是一块轻量级组件,可以模仿百度文库预览文档的样式

2012-10-17

quickchm V3.4

quickchm V3.4 带注册码 用于制作chm格式帮助文档 压缩包内带注册码 可以讲多个html转成 chm格式

2012-10-10

zip4j集合包Demo,Source,API

java中用文件压缩,文件解压,文件压缩加密,文件分卷压缩等。由于ZIP4J被墙了,查看下载不方便,特意翻过去 下载下来方便众网友。该资源包括了ZIP4j的源码,Demo等,看一看就能知道用了。

2012-09-27

SimpleColorPick 网页取色器 桌面取色器

在网页设计中,经常需要用到某种颜色,却不知道颜色的值,用这个取色器,可以任意获取到任意桌面的,网页的定点颜色。

2012-05-09

W3chool完全参考文档教程

领先的 Web 技术教程 - 全部免费 在w3school,你可以找到你所需要的所有的网站建设教程。 从基础的HTML到XHTML,乃至进阶的XML、SQL、数据库、多媒体和WAP。

2012-05-05

设计模式之禅 PDF版

设计模式之禅 PDF版 我希望这本书的阅读者具备最基本的代码编写能力,您是一个初级的coder,可以从中领会到怎么设计一段优秀的代码;您是一个高级程序员,可以从中全面了解到设计模式以及Java的边角技术的使用;您是一个顶级的系统分析师,可以从中获得共鸣,寻找到项目公共问题的解决办法,呀,是不是把牛吹大了?!

2012-05-05

Jquery中文 API V1.6-1.7

Jquery 1.6-1.7版的中文API ,使用IE 浏览效果更好

2012-05-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除