1 -- 创建表book的Transact-SQL语句: 2 create database
test01 3 create table test01.dbo.book( 4 book_id nchar(6) not null, 5 book_name
nchar(30) null, ...
分类:
数据库 时间:
2014-06-12 18:13:07
阅读次数:
640
一、变量的类型 JavaScript 有六种数据类型。主要的类型有
Number、String、object 以及 Boolean 类型,其他两种类型为 null 和 undefined。var obj =
{x:[1,2],y:23};//Object类型 i=100;//Number类型 i="...
分类:
Web程序 时间:
2014-06-12 18:00:51
阅读次数:
267
NSDictionary *aDictionary = [[NSDictionary
alloc]initWithObjectsAndKeys:@"tom",@"1",@"alex",@"2",@"josen",@"3", nil];
[aDictionary enumerateK...
分类:
其他好文 时间:
2014-06-12 15:18:51
阅读次数:
185
NSDictionary *dic = [NSDictionary
dictionaryWithObjectsAndKeys: [NSNumber numberWithInt:2] , @"actcode",nil];
//首先设置需要通知的方法。加入通知中心。比如当程序跑到这时就通知游戏 ...
分类:
移动开发 时间:
2014-06-12 12:40:55
阅读次数:
224
1、批量去除超链接:打开
statics/js/ckeditor/ckeditor.js找到:$.execCommand(‘unlink’,false,null);修改为:$.execCommand(‘unlink’,false,true);2、上传图片自动添加ALT参数修改
statics/js/...
分类:
其他好文 时间:
2014-06-12 11:40:47
阅读次数:
401