每天进步一小步,一年进步一大步。本篇主要介绍背景图片设置,平铺,x
y方向上的平铺,是否重复显示no repeat
显示的初始位置background-image:url(images/index_top_bg.jpg)...........................................
分类:
其他好文 时间:
2014-05-26 12:36:08
阅读次数:
242
1 UIImage *image = [UIImage
imageNamed:tempAppInfo.icon];2 UIImageView *appIcon = (UIImageView *) [appView
viewWithTag:0]; 3 appIcon.image = image;每次执...
分类:
其他好文 时间:
2014-05-26 12:35:45
阅读次数:
226
1、Intent intent = new
Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*");
intent.putExtra("crop", true); in...
分类:
其他好文 时间:
2014-05-26 12:00:15
阅读次数:
230
一. PL/SQL 与 SQL的交互1. 使用select语句.into是必须的,
查询只能返回一条或0条数据 declare v_fname employees.first_name%TYPE; --更正规的写法 --v_fname
varchar2(25); begin select first...
分类:
数据库 时间:
2014-05-26 09:59:44
阅读次数:
334
字体是我们在iPhone开发中经常需要用到的。但是iPhone里面到底内置了哪些字体呢?下面就是一个常用的列表。 Family name:
AppleGothic Font name: AppleGothic Family name: Hiragino Kaku Gothic ProN Font
n...
分类:
其他好文 时间:
2014-05-26 08:53:43
阅读次数:
212
1. Accept:告诉WEB服务器自己接受什么介质类型,*/* 表示任何类型,type/*
表示该类型下的所有子类型,type/sub-type。2. Accept-Charset: 浏览器申明自己接收的字符集Accept-Encoding:
浏览器申明自己接收的编码方法,通常指定压缩方法,是否支...
分类:
Web程序 时间:
2014-05-26 08:49:31
阅读次数:
223
写在前面的话XMLHttpRequest对象的open方法的第一个参数为request-type,取值可以为get或post.本篇介绍get请求.get请求的目的,主要是为了获取数据.虽然get请求可以传递数据,但传递数据的目的是为了告诉服务器,给我们什么内容.使用get请求时,参数都是随url进行...
分类:
其他好文 时间:
2014-05-26 07:57:01
阅读次数:
230
Attribute:$(”p”).addClass(css中定义的样式类型);
给某个元素添加样式$(”img”).attr({src:”test.jpg”,alt:”test Image”});
给某个元素添加属性/值,参数是map$(”img”).attr(”src”,”test.jpg”); ...
分类:
Web程序 时间:
2014-05-26 07:55:20
阅读次数:
409
写在前面的话:XMLHttpRequest对象的open方法的第一个参数为request-type,取值可以为get或post.本篇介绍post请求.使用post方式时,浏览器会把各表单中字段元素及其数据作为Http消息的实体内容发送给Web服务器.使用post方式时,要注意设置Content-Ty...
分类:
其他好文 时间:
2014-05-26 07:51:19
阅读次数:
247
报错:Access restriction: The method
decodeBuffer(String) from the type CharacterDecoder is not accessible due to
restriction on required libraryAccess r...
分类:
数据库 时间:
2014-05-26 07:30:24
阅读次数:
279