摘要: function step(A,B,rate,callback){ A = A + (B - A) / (rate || 2); if(Math.abs(A-B) < 1){ callback(B); return; } callback(A); setTimeout(function(){step(A,B... 阅读全文
posted @ 2017-02-10 15:11 LJ9197 阅读(240) 评论(0) 推荐(0) 编辑
摘要: div.wh{ background:#ff0;width:50%;position:relative;display:inline-block; } div.wh:before{ content: ""; display: inline-block; padding-bottom: 100%; width: .1px; vertical-align: middle; } di... 阅读全文
posted @ 2016-08-18 11:53 LJ9197 阅读(865) 评论(0) 推荐(0) 编辑
摘要: #contwrap:after{content:'';height:0;clear:both;display:block;visibility:hidden;} 阅读全文
posted @ 2016-06-07 14:26 LJ9197 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1 KDFormattedTextField kdtEntrys_returnAmount_TextField = new KDFormattedTextField(); 2 kdtEntrys_returnAmount_TextField.setName("kdtEnt... 阅读全文
posted @ 2015-12-17 22:24 LJ9197 阅读(743) 评论(0) 推荐(0) 编辑
摘要: 1.水平居中.className{ margin:0 auto; width:200px; height:200px;}2.垂直水平居中.className{ width:300px; height:200px; position:absolute; lef... 阅读全文
posted @ 2015-10-31 15:12 LJ9197 阅读(126) 评论(0) 推荐(0) 编辑
摘要: if(BillBaseStatusEnum.ADD==this.editData.getBaseStatus()){ this.btnSave.setEnabled(true); this.btnSubmit.setEnabled(false); ... 阅读全文
posted @ 2015-09-19 20:18 LJ9197 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1.判断事件前后的值是否发生了改变:protected boolean checkPrmtIsChange(DataChangeEvent arg0){ if(arg0.getNewValue() ==null&&arg0.getOldValue()!=null){ ... 阅读全文
posted @ 2015-09-19 20:09 LJ9197 阅读(258) 评论(0) 推荐(0) 编辑
摘要: select * from (select owner || '.' || tablespace_name name, sum(b) g from (select owner, t.segment_name, ... 阅读全文
posted @ 2015-08-07 00:40 LJ9197 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 一、expdp导出数据库 1、按用户导出 expdp scott/tiger@orcl DIRECTORY=oracle_dmp dumpfile=bak.dmp schemas=scott version=10.2.0.1.0;--如果10g导入11g,加上版本号 2.按数据库导出 expdp s 阅读全文
posted @ 2015-08-07 00:21 LJ9197 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 1.本地数据库新建一个用户test,并授予以下基本权限(尽量不要多授权,如本地权限大于远程,会导致导出失败,郁闷!):grant connect to test;grant resource to test;grant create table, create database link to te... 阅读全文
posted @ 2015-07-29 21:31 LJ9197 阅读(3138) 评论(0) 推荐(0) 编辑