会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Debugs
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
···
16
下一页
2017年6月16日
display: table-cell; 自适应布局
摘要: #extras {display: table-cell;width: 180px;padding-left: 10px;border-right: 1px dotted #d7ad7b;} table使该元素按table样式渲染table-row使该元素按tr样式渲染table-cell使该元素按
阅读全文
posted @ 2017-06-16 12:30 Debugs
阅读(929)
评论(0)
推荐(0)
2017年6月14日
js for 循环 添加tr td 算法
摘要: StringBuffer sb=new StringBuffer(); int n = 5; sb.append("<tr>"); List<MenuBean> chs = mb.getChildren(); for(int j = 0; chs != null && j < chs.size();
阅读全文
posted @ 2017-06-14 11:29 Debugs
阅读(7222)
评论(0)
推荐(0)
2017年6月12日
easyui 网址
摘要: http://www.runoob.com/jeasyui/jeasyui-datagrid-datagrid23.html http://www.jeasyui.com http://fineui.com/demo_mvc/#/demo_mvc/Mobile/?file=MobileAccordi
阅读全文
posted @ 2017-06-12 12:08 Debugs
阅读(208)
评论(0)
推荐(0)
2017年5月24日
Oracle开发常用函数 max 最大数 自动加 1 的模式
摘要: create sequence bs_com_seq increment by 1 start with 1 minvalue 1 maxvalue 999999 cycle nocache order; select to_char(sysdate,'yyyymmdd')||lpad(bs_com
阅读全文
posted @ 2017-05-24 11:36 Debugs
阅读(1195)
评论(0)
推荐(0)
2017年5月19日
js可以随意拖拽的div的实现
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>divDrag</title> <style> #div1{ width: 300px; height: 300px; background-color: #c
阅读全文
posted @ 2017-05-19 11:57 Debugs
阅读(502)
评论(0)
推荐(0)
使用jquery将表单自动封装成json对象 /json对象元素的添加删除和转换
摘要: var json={ id:"id1", name:"开心"}; //添加json["gender"]="男"json["age"]=26;alert(json.age); //删除delete json["age"];alert(json.age);alert(json.gender);
阅读全文
posted @ 2017-05-19 10:31 Debugs
阅读(275)
评论(0)
推荐(0)
2017年5月18日
oracle 语法
摘要: NVL2(E1, E2, E3)的功能为:如果E1为NULL,则函数返回E3,否则返回E2。E2和E3类型不同的话,E3会转换为E2的类型。 oracle 函数介绍之nullif 格式: nullif(expr1,expr2) 等价于 "case when expr1 = expr 2 then n
阅读全文
posted @ 2017-05-18 18:09 Debugs
阅读(233)
评论(0)
推荐(0)
Excel 导入 分批导入
摘要: tm.begin(); sm.begin(); try { result = excel.readE(headKeyV,path); for (int index = 1; index < result.size(); index++) { tempMap = result.get(index);
阅读全文
posted @ 2017-05-18 10:21 Debugs
阅读(489)
评论(0)
推荐(0)
数据量大分批执行处理
摘要: 没80条执行一次 int bathInt = 80; for(int i = 0; i < map.size()/bathInt; i++){ msg.append(pMethod.SHHSREVObject(map.subList(i*bathInt, (i+1)*bathInt),UName,T
阅读全文
posted @ 2017-05-18 10:18 Debugs
阅读(919)
评论(0)
推荐(0)
2017年5月12日
使用Oracle函数在创建表的时候自动加入生成的流水号 生成格式是:前缀+年月日+00000
摘要: CREATE OR REPLACE FUNCTION fn_no_make(v_type VARCHAR2, v_number_col VARCHAR2, v_table_name VARCHAR2)/* * 参数说明: * v_type: 编码前缀 * v_number_col:编码所在列名 *
阅读全文
posted @ 2017-05-12 15:14 Debugs
阅读(895)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
···
16
下一页
公告