上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
摘要: select type,numbers,case monthst when 1 then '一月'when 2 then '二月'when 3 then '三月'else '其他月'end monthst from capacity; 阅读全文
posted @ 2019-04-23 11:05 笔记Next 阅读(349) 评论(0) 推荐(0) 编辑
摘要: insert into user(id,name,depid) values(1,'zhangsan',1);insert into user(id,name,depid) values(2,'lisi',1);insert into user(id,name,depid) values(3,'wa 阅读全文
posted @ 2019-04-18 16:23 笔记Next 阅读(444) 评论(0) 推荐(0) 编辑
摘要: case when then 结构有两种格式,分别是 确定条件列 和 不确定条件列。 ① case 列 when 值1 then 返回值1 when 值2 then 返回值2 else 默认返回值 end 列名 这种方式默认每个when 后面的条件是 ‘列=值’ ② case when 条件1 th 阅读全文
posted @ 2019-04-18 16:21 笔记Next 阅读(7420) 评论(0) 推荐(0) 编辑
摘要: change是jquery上的绑定事件,可用于下拉框动态关联数据: $(function(){ $("#id").change(function(e){ alert($(this)); }); }); <input id="sdf" name="#" value="3" onChange="fun( 阅读全文
posted @ 2019-03-20 11:12 笔记Next 阅读(1234) 评论(0) 推荐(0) 编辑
摘要: 第一种方式 g1值不变,第二种方式g1值变了。 阅读全文
posted @ 2019-02-20 15:01 笔记Next 阅读(165) 评论(0) 推荐(0) 编辑
摘要: chapter 20 注解 三种标准注解和四种元注解: 编写注解处理器 chapter 21 并发 基本的线程机制 定义任务 public class MainThread { public static void main(String[] args) { LiftOff launch=new L 阅读全文
posted @ 2019-01-24 17:25 笔记Next 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 使用ajax序列化传到后台。 data : $("#formid").serialize(); public void fun(@Valid Vo vo){} 使用vo的数组字段属性String[] paramtersname接受参数; 阅读全文
posted @ 2019-01-22 10:42 笔记Next 阅读(710) 评论(0) 推荐(0) 编辑
摘要: chapter 1 认识 jQuery jquery.js(开发版),jquery.min.js(生产版) window.onload 与 $(document).ready() 的对比: jquery 代码风格 尽量为单行代码添加注释。 jquery 对象和 DOM对象 DOM树: DOM对象的获 阅读全文
posted @ 2019-01-21 16:19 笔记Next 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 给checkbox 添加默认的勾选,尽量使用 checked=“checked”,不要使用checked=“true”。 <td><input id="checkboxid" type="checkbox" value="valuename" checked="checked"></input></ 阅读全文
posted @ 2019-01-18 15:50 笔记Next 阅读(580) 评论(0) 推荐(0) 编辑
摘要: find() 使用: 返回 <ul> 后代中所有的 <span> 元素: $(document).ready(function(){$("ul").find("span").css({"color":"red","border":"2px solid red"});}); eq() 使用: <ul> 阅读全文
posted @ 2019-01-16 16:10 笔记Next 阅读(4805) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页