一、元素选择器1.最常见的选择器就是元素选择器,文档的元素就是最基本的选择器例如:h1{}a{}……<p>HelloWorld</p>
p{
color:blue;
}二、选择器分组1.例子:h1、h2{}h1,h2{
color:red;
}2.通配符:*{}<!DOCTYPEhtml>
<htmllang="en">
<head>
&l..
分类:
Web程序 时间:
2016-05-13 15:37:23
阅读次数:
265
(原文出处:http://blog.csdn.net/hbhhww/article/details/8206846)
B~树
1.前言:
动态查找树主要有:二叉查找树(Binary Search Tree),平衡二叉查找树(Balanced Binary Search Tree),红黑树 (Red-Black Tree ),B-tree/B+-tree/ B...
分类:
其他好文 时间:
2016-05-13 14:51:52
阅读次数:
261
#import "ViewController.h" #import "DetailViewController.h" @interface ViewController () #define RED arc4random() % 255 / 255.0 #define GREEN arc4rand ...
分类:
其他好文 时间:
2016-05-13 12:33:41
阅读次数:
169
注意:1.array的length不是只读的。可以从数组的末尾移出项或者向数组中添加新项。看下面例子: var colors = ["red","yellow","blue"];colors.length = 2;console.info(colors[2]);结果:undefined原因:将len ...
分类:
编程语言 时间:
2016-05-13 09:30:27
阅读次数:
131
JS判断只能是数字和小数点 0.不能输入中文1) 2) 1.文本框只能输入数字代码(小数点也不能输入) 2.只能输入数字,能输小数点. 3.数字和小数点方法二 4.只能输入字母和汉字 5.只能输入英文字母和数字,不能输入中文 6.只能输入数字和英文<font color="Red">chun</fo ...
分类:
Web程序 时间:
2016-05-13 09:14:37
阅读次数:
173
1、Redis的介绍
Redis 开源的内存数据库,以Key-Value方式存储数据;
Redis的特点:
1)、Redis的数据完全存储在内存中,使用磁盘仅仅是为了持久化数据,解决重启服务器而导致数据丢失的问题;
2)、相比其他Key-Value数据库,Redis有比较丰富的数据类型;
3)、Redis可以将数据复制到任意数量的从服务器上。
2、Red...
分类:
其他好文 时间:
2016-05-12 23:07:51
阅读次数:
174
面向对象编程
--再谈文本查询示例
引言:
扩展第10.6节的文本查询应用程序,使我们的系统可以支持更复杂的查询。
为了说明问题,将用下面的简单小说来运行查询:
Alice Emma has long flowing red hair.
Her Daddy says when the wind blows
through her hair...
分类:
编程语言 时间:
2016-05-12 22:19:17
阅读次数:
292
实例1:带声音的导航
无标题文档
*{ margin:0; padding:0;}
#ul1{ width:1000px; height:30px;}
#ul1 li{ list-style:none; width:100px;height:30px; background:red; color:white; border:1px #000 solid; floa...
分类:
Web程序 时间:
2016-05-12 20:30:24
阅读次数:
640
// 倾斜度45,上下左右居中
int w=getMeasuredWidth();
canvas.rotate(-45,w,w);
// 绘制这个三角形,你可以绘制任意多边形
Paint p1 = new Paint();
p1.setColor(Color.RED);// 设置红色
p1.setStyle(Paint....
分类:
移动开发 时间:
2016-05-12 20:09:09
阅读次数:
2018
Red and Black
Time Limit: 1000MS
Memory Limit: 30000K
Total Submissions: 29614
Accepted: 16095
Description
There is a rectangular room, covered with square tiles. Eac...
分类:
其他好文 时间:
2016-05-12 16:36:23
阅读次数:
169