刚才写zenktodo的时候,通过动态添加class的方式修改一个div的样式,总是不起作用。Css代码#navigator{height:100%;width:200;position:absolute;left:0;border:solid2#EEE;}.current_block{border...
分类:
Web程序 时间:
2014-10-12 02:37:27
阅读次数:
489
invlpg 指令简介
void
tlb_invalidate(pde_t *pgdir, void *va)
{
// Flush the entry only if we're modifying the current address space.
// For now, there is only one address space, so...
分类:
其他好文 时间:
2014-10-11 18:13:55
阅读次数:
214
在Eclipse 用Maven 创建了一个新项目(Quartz), 运行发现出错了New Maven Project--> maven-archetype-quickstartandNew Maven Project--> Simple project without archetype selec...
分类:
其他好文 时间:
2014-10-11 15:52:25
阅读次数:
138
本文导读:Insert 是T-sql中常用语句,但我们在开发中经常会遇到需要表复制的情况,如将一个table1的数据的部分字段复制到table2中,或者将整个 table1复制到table2中,这时候我们就要使用SELECT INTO 和 INSERT INTO SELECT 表复制语句了selec...
分类:
其他好文 时间:
2014-10-11 15:18:35
阅读次数:
191
- (void) goBack{/* Get the current array of View Controllers */NSArray *currentControllers = self.navigationController.viewControllers; /* Create a mu...
分类:
编程语言 时间:
2014-10-11 14:07:15
阅读次数:
115
hadoop@yts-Rev-1-0:/usr/local/hadoop/hadoop-2.2.0/hdfs/data/current$ jps11634 SecondaryNameNode11315 NameNode11779 ResourceManager11910 NodeManager125...
分类:
其他好文 时间:
2014-10-11 11:50:05
阅读次数:
187
select @@servername--计算机名select @@servicename--数据库名select @@version --获取当前数据库版本 select @@language --当前语言 配置函数select getdate() as getdate --当前时间 selec....
分类:
数据库 时间:
2014-10-11 02:35:44
阅读次数:
215
在iOS系统中提供了系统版本的判断函数,因此我们可以很容易得到他的当前系统版本:[[UIDevice currentDevice] systemName];//系统名字[[UIDevice currentDevice] systemVersion];//系统版本号[[UIDevice current...
分类:
移动开发 时间:
2014-10-10 17:07:34
阅读次数:
173
以时间/日期服务器为例来说明进程间的通信这里用shell脚本来实现1,服务程序, 更新当前时间到一个文件,#! /bin/sh# time serverwhile true;dodate > /temp/current_datesleep 1done2,客户程序,通过共享文件获得当前时间进程。#! ...
分类:
系统相关 时间:
2014-10-10 16:51:44
阅读次数:
197
function traverse($path = ‘.‘) { ? ?$current_dir = opendir($path); ? ?//opendir()返回一个目录句柄,失败返回false ? ?while(($file = readdir($current_dir)) !== false) { ? ?//readdir()返回打开目...
分类:
Web程序 时间:
2014-10-10 12:01:54
阅读次数:
174