上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 23 下一页
摘要: jQuery中json对象与json字符串互换(2014-03-03 13:35:37)转载▼json字符串转json对象:jQuery.parseJSON(jsonStr);json对象转json字符串:JSON.stringify(jsonObj);IE中可能对unicode使用“\uXXXX”... 阅读全文
posted @ 2015-10-28 11:00 JIN__JIN 阅读(352) 评论(0) 推荐(0) 编辑
摘要: /** * 将数值四舍五入(保留2位小数)后格式化成金额形式 * * @param num 数值(Number或者String) * @return 金额格式的字符串,如'1,234,567.45' * @type String */function formatCurrency(num) { ... 阅读全文
posted @ 2015-10-27 11:22 JIN__JIN 阅读(625) 评论(0) 推荐(0) 编辑
摘要: /** *获取访问用户的客户端IP(适用于公网与局域网). */ publicfinalStringgetIpAddr(finalHttpServletRequestrequest) throwsException{ if(request==null){ throw(newException("ge... 阅读全文
posted @ 2015-10-23 11:13 JIN__JIN 阅读(467) 评论(0) 推荐(0) 编辑
摘要: https://github.com/Meituan-Dianping/mpvue mpvue Vue.js 小程序版, fork 自 vuejs/vue@2.4.1,保留了 vue runtime 能力,添加了小程序平台的支持。 http://www.runoob.com/(菜鸟教程) http: 阅读全文
posted @ 2015-10-09 10:21 JIN__JIN 阅读(151) 评论(0) 推荐(0) 编辑
摘要: http://www.2cto.com/database/201205/133542.htmlORA-12519,TNS:no appropriate service handler found的问题Java代码 ORA-12519, TNS:no appropriate service handl... 阅读全文
posted @ 2015-09-06 16:26 JIN__JIN 阅读(658) 评论(0) 推荐(0) 编辑
摘要: http://blog.useasp.net/archive/2012/11/03/the-problem-when-setTimeout-invoke-a-function-with-an-object-parameter.aspxjavascript中setTimeout调用function时,... 阅读全文
posted @ 2015-09-01 15:22 JIN__JIN 阅读(925) 评论(0) 推荐(1) 编辑
摘要: select * from t where 1=1START WITH key_id=600 CONNECT BY PRIOR key_id = pid order by key_id desc 阅读全文
posted @ 2015-08-25 11:53 JIN__JIN 阅读(164) 评论(0) 推荐(0) 编辑
摘要: CREATE SMALLFILE TABLESPACE ts_logDATAFILE 'D:\ts_log.dbf' SIZE 100MAUTOEXTEND ON NEXT 50M MAXSIZE 20480M LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPAC... 阅读全文
posted @ 2015-08-19 15:13 JIN__JIN 阅读(132) 评论(0) 推荐(0) 编辑
摘要: ORACLE EBS操作某一个FORM界面,或者后台数据库操作某一个表时发现一直出于"假死"状态,可能是该表被某一用户锁定,导致其他用户无法继续操作--锁表查询SQLSELECT object_name, machine, s.sid, s.serial#FROM gv$locked_object ... 阅读全文
posted @ 2015-06-30 04:43 JIN__JIN 阅读(162) 评论(0) 推荐(0) 编辑
摘要: create procedure killsessionas --set serveroutput on; --in oracle sql developer this cannot be ignoreDECLARE v_cresql clob; v_id v$session.SID%TY... 阅读全文
posted @ 2015-06-17 15:39 JIN__JIN 阅读(798) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 23 下一页