onerror 事件会在文档或图像加载过程中发生错误时被触发。案例:如果: src 路径加载错误;则触发 onerror事件 。
分类:
其他好文 时间:
2014-12-10 15:49:43
阅读次数:
133
SEL 对象即一个selector对象,保存一个方法的地址。
Person.h
#ifndef oc_Person_h
#define oc_Person_h
@interface Person : NSObject
{
int age;
@protected
float height;
}
@property int age; //编译器自动解释成 int age的get...
分类:
编程语言 时间:
2014-12-10 14:14:03
阅读次数:
143
Person.h
#ifndef oc_Person_h
#define oc_Person_h
@interface Person : NSObject
{
int age;
@protected
float height;
}
- (int) age; //get方法
- (void) setAge:(int)pAge; //set方法
@end
#endif...
分类:
编程语言 时间:
2014-12-10 12:40:26
阅读次数:
211
最近使用背景图片做了个展开和关闭的样式如下:
.iconcut {
background: url("images/iconBg01.gif") no-repeat left -248px;
height: 16px;
width: 16px;
display: inline-block;
margin: 6px;
float: left;
}
效果出来如下:
但是在...
分类:
其他好文 时间:
2014-12-10 12:34:54
阅读次数:
136
题目大意:在喵星球上有一些喵~,每个喵都有一个姓和一个名字。点名的时候如果一个喵中姓或者名中有这个串的话他就会喵。问每次点名有几个喵喵了,和每个喵喵了几次。
思路:好萌的题喵~
AC自动机构造fail树是可以做的,但是和SA乱搞的时间差不多,我就是SA乱搞的w
把所有的串(姓名,询问)用$连接成一个串,然后做后缀数组,height数组。过程中记录一下每一个后缀数属于哪个喵,还有询问在...
分类:
编程语言 时间:
2014-12-10 10:50:36
阅读次数:
229
.aspx代码如下:
.item
{ padding:9px; border:1px solid silver; margin:5px;
float:left;
}
.item img
{ width:160px; height...
分类:
编程语言 时间:
2014-12-10 09:23:19
阅读次数:
186
Css: .spinner{ width:245px; height:245px; position:relative;}.coly{ border-radius:130px; font-size:19px; background:#333; border:10px solid #ecab1...
分类:
Web程序 时间:
2014-12-09 19:28:03
阅读次数:
523
main.xml 文件
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
android:id="@+id/ll_week"
...
分类:
移动开发 时间:
2014-12-09 17:51:12
阅读次数:
308
我们知道select标签在各个浏览器中的属性和各浏览器的支持各有些不同,从而造成select选择框在各浏览器的显示有不同,下面我们通过对主要CSS属性的支持,打造全兼容select。对select的height、padding、line-height分别利用控制变量的方法写了个DEMO在各浏览器上测...
分类:
其他好文 时间:
2014-12-09 17:27:53
阅读次数:
194
冒号、分号分不清的字体数字 0 和字母 o 分不清的字体数字 1 和小写的字母 l 分不清的字体英文逗号、英文句号分不清的字体中文引号、英文引号分不清的字体翻引号 ` 和单引号 ’ 分不清的字体数字 1 和大写的字母 I 分不清的字体
分类:
其他好文 时间:
2014-12-08 21:13:46
阅读次数:
181