文章列表
设置select框option的selected属性时,最好用
option.selected = true;
option.setAttribute("selected", "selected");
在出现form.clone()时会无法记录jQuery的attr为option设置的selected,所以用上面的方式更可靠一些
- 2009-09-07 14:58
- 浏览 1109
- 评论(0)
建了第一个测试程序就不是那么顺利,接连遇到了几个问题,首先是
no classfiles specified
Conversion to Dalvik format failed with error 1
晚上说用Project菜单下的Clean命令清理一下就好了,果然如此。
据查到的国外网站说,还有一种办法:
If you are using eclipse.
Click on the project folder in the "Package explorer" and click F5(refresh).
It should wor ...
- 2009-09-06 23:17
- 浏览 4092
- 评论(0)
看新闻,移动要推OPhone,于是决定研究一下Android开发。
官方推荐使用Eclipse,上次用还是2年前,于是记录一下安装过程,最好能够帮到别人少走弯路。
1. 首先下载 JDK
和 Eclipse
,安装或解压。
2. 打开Eclipse,“Help”菜单下的“Install New Software”,点击“Add”,添加Google Android插件地址:https://dl-ssl.google.com/android/eclipse/
。Eclipse会搜索站点地址,找出插件,一路默认安装就好了。
3. 下载Android SDK,标准地址 ...
- 2009-09-06 20:15
- 浏览 5548
- 评论(0)
数组有四种定义的方式
使用构造函数:
var a = new Array();
var b = new Array(8);
var c = new Array("first", "second", "third");
或者数组直接量:
var d = ["first", "second", "third"];
属性
Array只有一个属性,就是length,length表示的是数组所占内存空间的数目,而不仅仅是数组中元素的个数,在刚才定义的数组中,b.l ...
- 2009-08-24 13:41
- 浏览 871
- 评论(0)
1. Objectives
Example:
Grow online sales by 25% over the next 12 months without an increase in
ad spending.
2. Audiences
Example:
■ Primary Audience. Prospective customers.
■ Secondary Audiences. Customers, potential investors, partners and potential part ...
- 2009-08-23 23:06
- 浏览 756
- 评论(0)
In jQuery 1.3.2 core.js, there is function:
function now(){
return +new Date;
}
as you see, it's return value use "+", what does it mean?
After check for some reference, this means convert String to Number, it equals
Number(new Date)
- 2009-08-22 22:27
- 浏览 1118
- 评论(0)
1.导出整个数据库
mysqldump -u 用户名 -p 数据库名 > 导出的文件名
mysqldump -u wcnc -p smgp_apps_wcnc > wcnc.sql
2.导出一个表
mysqldump -u 用户名 -p 数据库名 表名> 导出的文件名
mysqldump -u wcnc -p smgp_apps_wcnc users> wcnc_users.sql
3.导出一个数据库结构
mysqldump -u wcnc -p -d --add-drop-table smgp_apps_wcnc >d:w ...
- 2009-08-22 22:22
- 浏览 1217
- 评论(0)
PX和PT转换的公式:
pt=px乘以3/4。
比如12px×3/4=9pt大小。
PX和em转换的公式:
em=16乘以px,也就是说1.5em=1.5×16=24px。
设计中常用PX/EM/PT/百分比转换表格
Pixels
EMs
Percent
Points
6px
0.375em
37.50%
5pt
7px
0.438em
43.80%
5pt
8px
0.5em
50%
6pt
9px
0.563em
56.30%
7pt
10px
...
- 2009-08-22 22:21
- 浏览 2598
- 评论(0)