上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 83 下一页
  2016年1月18日
摘要: 参与开发的项目 1.医师定考 2.重点学科 3.DRGS实施的项目 DRGSU进步 真实项目开发流程,升级流程,实施流程待提高 代码质量 阅读全文
posted @ 2016-01-18 23:04 Simle 阅读(276) 评论(0) 推荐(0)
  2016年1月15日
摘要: 1.js版HelloWorld 2.注释 单行// 多行 /**/3.操作符 +、-、*、/、%、+=、-=、==(数值一样)、===(类型和数值都一样)4.逻辑运算符 ||、&&5.定义变量(弱类型) var num= 1; var string = "我是中国人"; var my... 阅读全文
posted @ 2016-01-15 15:11 Simle 阅读(386) 评论(0) 推荐(0)
摘要: public List getVctcdList(Pagination page){ List cctcList = (List) page.getList(); List expList = courseExpService.getAll(); List vcctcdList ... 阅读全文
posted @ 2016-01-15 10:28 Simle 阅读(183) 评论(0) 推荐(0)
  2016年1月13日
摘要: function loadInfo(){ var shengId=document.getElementById("sheng").value; shi.options.length=0; // 删除所有市下拉框的选项 var xmlHttp; if(window.XMLHttpReque... 阅读全文
posted @ 2016-01-13 23:24 Simle 阅读(322) 评论(0) 推荐(0)
摘要: 姓名年龄得分 function loadInfo2(){ var xmlHttp; if(window.XMLHttpRequest){ xmlHttp=new XMLHttpRequest(); }else{ xmlHttp=new ActiveXObject(... 阅读全文
posted @ 2016-01-13 23:09 Simle 阅读(534) 评论(0) 推荐(0)
摘要: 1.Json字符串PrintWriter out=response.getWriter(); // String resultJson="{\"name\":\"张三\",\"age\":22}"; JSONObject resultJson=new JSONObject(); resultJ... 阅读全文
posted @ 2016-01-13 22:57 Simle 阅读(183) 评论(0) 推荐(0)
摘要: JSON 对象{ "name":"张三" , "age":22}JSON 数组{"student": [{ "name":"张三" , "age":22 },{ "name":"李四" , "age":23 },{ "name":"王五" , "age":24 }]}JSON 嵌套{"student... 阅读全文
posted @ 2016-01-13 22:51 Simle 阅读(187) 评论(0) 推荐(0)
摘要: 1.拼凑 var myDate = new Date(); var weekday=new Array(7) weekday[0]="星期日" weekday[1]="星期一" weekday[2]="星期二" weekday[3]="星期三" weekday[4]="星期四" weekda... 阅读全文
posted @ 2016-01-13 15:02 Simle 阅读(232) 评论(0) 推荐(0)
  2016年1月12日
摘要: 1.单文件上传 1.1修改配置文件 1.2添加两个jar包 com.springsource.org.apache.commons.fileupload-1.2.0.jar com.springsource.org.apache.common... 阅读全文
posted @ 2016-01-12 22:56 Simle 阅读(203) 评论(0) 推荐(0)
摘要: 1.Restful风格的资源URL 无后缀资源的访问(csdn用法)2.SpringMvc对Rest风格的支持 2.1将 /*.do改为/ 2.23.@PathVariable获取Url变量 @RequestMapping("/details/{id}") public String li... 阅读全文
posted @ 2016-01-12 22:34 Simle 阅读(249) 评论(0) 推荐(0)
上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 83 下一页