`
fairy0815
  • 浏览: 18545 次
  • 性别: Icon_minigender_1
  • 来自: 北京
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
设置select框option的selected属性时,最好用   option.selected = true; option.setAttribute("selected", "selected");   在出现form.clone()时会无法记录jQuery的attr为option设置的selected,所以用上面的方式更可靠一些
建了第一个测试程序就不是那么顺利,接连遇到了几个问题,首先是   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 ...
看新闻,移动要推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,标准地址 ...
数组有四种定义的方式 使用构造函数: 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 ...
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 ...
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)
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 ...
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  ...
先搞清基本概念:px就是表示pixel,像素,是屏幕上显示数据的最基本的点;而pt就是point,是印刷行业常用单位,等于1/72英寸。 这样很明白,px是一个点,它不是自然界的长度单位,谁能说出一个“点”有多长多大么?可以画 ...
Global site tag (gtag.js) - Google Analytics