function NewDate(dateTime) { var fulldate = dateTime.split('-'); var day = fulldate[2].split(" "); var time = day[1]....
分类:
编程语言 时间:
2014-07-07 12:43:39
阅读次数:
701
1、错误描写叙述Expression students is undefined on line 30, column 24 in student.ftl.The problematic instruction:----------==> list students as student [on l...
分类:
其他好文 时间:
2014-07-07 10:04:17
阅读次数:
371
var itemsPerPage = 20;
var combo;
//创建数据源store
Ext.define('recordStore', {
extend : 'Ext.data.Store',
// autoLoad : {
// start : 0,
// limit : itemsPerPage
// },
start : 0,
limit :...
分类:
Web程序 时间:
2014-07-05 10:53:34
阅读次数:
412
第三章:对象:属性名字:可以是包括空字符串在内的任意字符串;属性值:是除undefined值之外的任何值;【1】、对象字面量:var obj={}; //空对象var newobj={ name:"小明", age:17, school:{ class:"一班" }};属性名可加引号...
分类:
编程语言 时间:
2014-07-03 10:40:30
阅读次数:
181
Givenn, how many structurally uniqueBST's(binary search trees) that store values 1...n?For example,Givenn= 3, there are a total of 5 unique BST's. 1.....
分类:
其他好文 时间:
2014-07-02 22:13:23
阅读次数:
191
在使用git时,使用git pull,或git push,每次都要我输入用户名和密码,比较麻烦.git有个参数可以解决这个问题。修改./git/config文件,增加[credential] helper = store问题解决。
分类:
其他好文 时间:
2014-07-02 19:33:23
阅读次数:
187
The Direct I/O (Load/Store) module(即是LSU) serves as the source of all outgoing direct I/O packets(LSU用于配置发起数据读/写的SRIO设备端,发起端发送Direct IO包). With direct I/O, the RapidIO packet contains the specific add...
分类:
其他好文 时间:
2014-07-02 08:48:15
阅读次数:
472
哥德巴赫猜想: 任何一个大于2的偶数都可以拆分为两个素数的和打印出小于2000的偶数拆分情况: var goldbach = function (n){
for(var i = 2;i<n; i++){
if(isPrime(i) && isPrime(n-i)){return {n1:i,n2:(n-i)} ;}
}
return undefined;
}
var isPrime = f...
分类:
其他好文 时间:
2014-07-02 08:23:38
阅读次数:
199
//在js中if条件为null/undefined/0/NaN/""表达式时,统统被解释为false,此外均为true .//为空判断函数function isNull(arg1){return !arg1 && arg1!==0 &&typeof arg1!=="boolean"?true:fal...
分类:
Web程序 时间:
2014-07-01 16:32:25
阅读次数:
304
APP发布到应用市场(苹果APP STORE+安卓各大应用市场)
注意事项
1、应用要签名,为了以后能够顺利更新应用,要保持每次的签名一致,所以要妥善保管好签名数据。
2、进行发布测试,最好有个检查表,每次发布的时候进行核查。
苹果APP STORE...
分类:
移动开发 时间:
2014-07-01 15:55:05
阅读次数:
328