.ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; -o-text-overflow: ellipsis; -webkit-text-overflow: ellipsis...
分类:
其他好文 时间:
2016-01-18 10:24:37
阅读次数:
132
一,效果图。二,文件目录。三,代码。RootViewController.h#import @interface RootViewController : UIViewController{ UIView * _huiView; UITableView * _btnTableView; ...
分类:
其他好文 时间:
2016-01-18 10:22:29
阅读次数:
156
urllib.requestimport urllib.request as ururl='http://ie.icoa.cn'user_agent = 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)'req=ur.Request(url)req.ad...
分类:
编程语言 时间:
2016-01-18 10:23:04
阅读次数:
183
转自:http://blog.csdn.net/zdy0_2004/article/details/44652323linux死锁检测的一种思路http://www.cnblogs.com/mumuxinfei/p/4365697.html前言: 上一篇博文讲述了pstack的使用和原理. 和j.....
分类:
系统相关 时间:
2016-01-18 10:23:47
阅读次数:
283
yum remove mysql mysql-server mysql-libs compat-mysql51rm -rf /var/lib/mysqlrm /etc/my.cnf查看是否还有mysql软件:rpm -qa|grep mysql有的话继续删除rpm -e xxx.rpm --nod....
分类:
数据库 时间:
2016-01-18 10:23:23
阅读次数:
147
HTML5的很大一个优势就是可以更加便捷高效地制作网页粒子动画特效,特别是Canvas特性,可以实现在网页上绘制任何图形和动画。本文要分享7款让人惊叹的HTML5粒子动画特效,这些粒子特效都提供源代码下载供大家学习。1、HTML5 Canvas粒子模拟效果这是一款利用HTML5Canvas模拟出来的...
分类:
Web程序 时间:
2016-01-18 10:23:13
阅读次数:
175
http://www.poluoluo.com/jzxy/201307/233374.html代码如下:jQuery.fn.wait = function (func, times, interval) {var _times = times || -1, //100次_interval = int...
分类:
Web程序 时间:
2016-01-18 10:23:53
阅读次数:
168
一、校验数字的表达式 1 数字:^[0-9]*$ 2 n位的数字:^\d{n}$ 3 至少n位的数字:^\d{n,}$ 4 m-n位的数字:^\d{m,n}$ 5 零和非零开头的数字:^(0|[1-9][0-9]*)$ 6 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9]...
分类:
其他好文 时间:
2016-01-18 10:21:23
阅读次数:
203
javascript跳转语句 1.break 跳出当前循环不在运行 2.continue 跳过本次循环 进行下次循环
分类:
编程语言 时间:
2016-01-18 10:22:03
阅读次数:
140
1 // 非原创,来自demo:http://yuanoook.com/file?hash=579d738296490b2f9375ee15c547cd07 2 // http://www.w3cfuns.com 3 // http://cdn.res.w3cfuns.com/js/common.....
分类:
编程语言 时间:
2016-01-18 10:21:27
阅读次数:
185
众所周知,package.json是CommonJS规定的用来描写叙述包的文件,全然符合规范的package.json文件应该含有一下字段。name:包的名称,必须是唯一的。由小写英文字母、数字和下划线组成。不能包括空格。description:包的简要说明。version:符合语义化八本识别规范的...
分类:
Web程序 时间:
2016-01-18 10:20:39
阅读次数:
119
@interface AppDelegate ()@property(strong,nonatomic) UIImageView *launchImaViewO;@property(strong,nonatomic) UIImageView *launchImaViewT;@end@implemen...
分类:
其他好文 时间:
2016-01-18 10:20:08
阅读次数:
201
最近在研究Volley框架的源码,发现它在HTTP请求的使用上比较有意思,在Android 2.3及以上版本,使用的是HttpURLConnection,而在Android 2.2及以下版本,使用的是HttpClient。我也比较好奇这么使用的原因,于是专门找到了一位Google的工程师写的一篇博客...
分类:
移动开发 时间:
2016-01-18 10:20:29
阅读次数:
220
BodyContent揭秘及定制复杂的JSP标签 jsp中的定制标签功能可以帮助我们来更好地实现presentation layer。我在学习的时候,感觉最困难的就是BodyContent这个类,Sun在API和specification中对BodyContent介 绍的非常少,以至于很多程序员.....
分类:
Web程序 时间:
2016-01-18 10:20:20
阅读次数:
317
UI就一般就行。实现点击打开本地上传图片窗口。方法1:给UI样式"input"的父标签加绝对定位,在UI样式"input"标签后面加,给这个标签设置宽度大小都跟UI样式"input"标签的宽高一致然后通过定位在其上,透明度设为0,这样就可以了。方法2:不用给UI样式"input"的父标签加绝对定位,...
分类:
其他好文 时间:
2016-01-18 10:20:53
阅读次数:
119
Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num...
分类:
其他好文 时间:
2016-01-18 10:21:51
阅读次数:
119
一、先看看文档里怎么说 Base class for those who need to maintain global application state. You can provide your own implementation by specifying its name in your...
分类:
移动开发 时间:
2016-01-18 10:21:23
阅读次数:
198