一 、JS
HTML 定义网页的内容,CSS 规定网页的布局,而JavaScript 对网页行为进行编程。
二、使用场景
2.1获取时间
var now = new Date();
var year = now.getFullYear();
var month = now.getMonth();
var date = now.getDate();
var day = now.getDay();
var hour = now.getHours();
var minu = now.getMinutes();
var sec = now.getSeconds();
var MS = now.getMilliseconds();
month=(month>9)?month:("0"+month);
var nowTime=""+year+month;
2.2获取函数或方法执行后的数据
var input=_context.get('操作名称').get('输出变量名');
2.3定义ArrayList
var ArrayList=Java.type('java.util.ArrayList');
var personList=new ArrayList();
2.4手动写ArrayList并赋值
var personList = {
"result": [{
"name": "raoke",
"age": 24
}, {
"name": "shuaige",
"age": 18
}]
};
2.5手动定义一个对象
var personVo={"name":"zhangsan","age":18};
2.6ArrayList相关处理
personList.add(personVo);
if(personList!=null){}或者if(personList){}
for (var i = 0; i < personList.length; i++){
if (personList[i].age > 18) {
result.msg="good boy/girl";
}
}
|