zTree的使用 js函数: <link?rel="stylesheet"?href="css/zTreeStyle/zTreeStyle.css"?type="text/css"></link>
<script?type="text/javascript"?src="js/zTree/jquery.ztree.core-3.5.js"></script>
<scri...
分类:
其他好文 时间:
2014-07-31 13:47:07
阅读次数:
399
今天初识css3看来JQuery高级编程要放到最后去看了。笔记:a:link{color:blue;}未访问a:visited{color:blue;}已访问a:hover{color:red;}悬浮a:active{color:yellow;}活动链接css代码格式p{css属性:属性值}border-radius:xxpx;(边框圆角)padding-(top,left,right,bottom):xxp..
分类:
Web程序 时间:
2014-07-31 10:00:36
阅读次数:
447
$("选择器").clink单击dbmouse 双击hide 隐藏$(".div.ex").perances(".div").hide("slow")perance 祖 parents父mouseenteredmouseleavermousedownmouseupmousehover 悬浮focus...
分类:
Web程序 时间:
2014-07-30 23:23:25
阅读次数:
254
#define T Stack_T
typedef struct T *T;
struct T {
int count;
struct elem {
void *x;
struct elem *link;
} *head;
}
const T stk //指针常量, const修饰struct T *。地址不能变。
const struct T *stk //指向常量的指...
分类:
其他好文 时间:
2014-07-30 20:56:14
阅读次数:
187
project(ovw)cmake_minimum_required(VERSION2.8)#turnonshowcompilecmdlineSET(CMAKE_VERBOSE_MAKEFILEon)SET(CMAKE_PREFIX_PATH"F:/Qt5.3.1/win32_static_2013")#SetsourcedirofcppSET(SRC_DIR${PROJECT_SOURCE_DIR}/..)SET(QTLIB_DIR"F:/Qt5.3.1/win32_static_2013")#tosetc..
分类:
移动开发 时间:
2014-07-30 17:51:44
阅读次数:
555
转载自:http://www.cnblogs.com/macroxu-1982/archive/2012/10/01/2709960.html1 实现过程添加libsqlite3组件选择项目后,在展示的xcodepro文件配置界面中配置 build phases -> Link Binary Wit...
分类:
移动开发 时间:
2014-07-30 11:28:13
阅读次数:
249
int?n=0;
int?max?=?100;
//通常的做法(省略上下文)
if(n>=max)
{
????n?=?0;
}
n++;
//巧妙的做法
n%=max
n++
分类:
其他好文 时间:
2014-07-30 10:15:03
阅读次数:
222
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Tab Position - jQuery EasyUI Demo</title> <link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css"> <link rel="style...
分类:
其他好文 时间:
2014-07-29 16:20:09
阅读次数:
579
一、Linux系统安装配置
1.安装系统时选Desktop
2.设置eth0网卡为静态IP,添加子网掩码,网关,DNS,并配置自动启动
3.修改/etc/hosts,添加主机名和对应IP
4.禁用firewall和selinux
chkconfig iptables off
vi /etc/selinux/config
SELINUX=disabled...
分类:
数据库 时间:
2014-07-29 14:18:48
阅读次数:
412