18:22 2013/9/21attr(name|properties|key,value|fn)
概述 设置或返回被选元素的属性值。在jquery中[]表示可选参数,你可以不选,| 表示参数可以是多种,|相当于或参数
nameStringV1.0属性名称properties MapV1.0作为属性...
分类:
Web程序 时间:
2014-05-23 05:21:40
阅读次数:
272
应一些人之邀。。。发一篇代码 1 #include 2 #include 3 #include 4
#include 5 6 using namespace std; 7 struct node 8 { 9 int data; 10 int key;
11...
分类:
其他好文 时间:
2014-05-23 05:17:06
阅读次数:
246
将字典转化为模型,面向模型开发,是在开发中最为常用的功能。利用KVC可以将字典转换为模型,但是前提有三个约束,一个是必须保证模型的属性个数大于等于字典个数,二是属性名称与字典的key必须相同,三是对于模型中的基本数据类型无法转换。
其中第一条与第三条,是其最大的弊端。例如,如果从服务器获取的数...
分类:
其他好文 时间:
2014-05-23 04:45:10
阅读次数:
219
今天写了个java的小程序在运行的时候抛出下面的异常:java.lang.NumberFormatException:
For input string: "" 。定位到源程序中出错的地方: String[] cols = key.toString().split(" ");
return...
分类:
编程语言 时间:
2014-05-23 03:50:00
阅读次数:
325
如下参考实例: TimeSpan ts= new TimeSpan(0); TimeSpan
ts2 = new TimeSpan(0); foreach (var item in alarmListOfSpecifyOrg) { if
(_graphicsManager.ExistsAlarm.....
分类:
其他好文 时间:
2014-05-23 03:23:49
阅读次数:
239
List integers = new List() { 0, 1, 2, 3, 4, 5,
6, 7, 8, 9 };Parallel.ForEach(integers, (int item, ParallelLoopState state)
=>{ if (item > 5) { ...
分类:
Web程序 时间:
2014-05-22 16:03:56
阅读次数:
287
An IEnumerable objectAn Action of T which is
used to process each item in the listList dataList = new List { "this", "is",
"random", "sentence...
分类:
Web程序 时间:
2014-05-22 16:01:17
阅读次数:
290
SQLite可以解析大部分的标准SQL语句:建表语句:create table 表名(主键名
integer primary key autoincrement(设置为自增列),其他列名及属性)或(主键名 integer primary key
)SQLite数据库中将所有声明为“integer p...
分类:
移动开发 时间:
2014-05-22 15:44:31
阅读次数:
380
一.前期准备1)google account:用gmail邮箱就ok2)debug
key:也就是开发者金钥3)app ID:也就是package
名称【步骤】1.打开Eclipse->Eindows->Preferences->Android->Build 复制SHA1
fingerprint后面...
分类:
移动开发 时间:
2014-05-22 15:04:12
阅读次数:
288
1.解压[root@zabbix~]#tar-jxvfmsmtp-1.4.32.tar.bz22.配置[root@zabbix~]#cdmsmtp-1.4.32[root@zabbixmsmtp-1.4.32]#./configure--prefix=/usr/local/msmtp--sysconfdir=/usr/local/msmtp/etccheckingbuildsystemtype...x86_64-unknown-linux-gnucheckinghostsystemtype...x86..
分类:
其他好文 时间:
2014-05-21 12:58:08
阅读次数:
378