09 2021 档案
摘要:第一步:判断clob里面是有包含某个特定的字符串:假如是说“/admin/ewebeditor/uploadfile/“ 关键字:dbms_lob.instr Code: select id, content from table_name where dbms_lob.instr(content,
阅读全文
摘要:--创建存储过程 create or replace procedure seq_res_1 is v_sql varchar2(200); n number; begin select seq_name.CURRVAL into n from dual; v_sql:='alter sequenc
阅读全文
摘要:CREATE OR REPLACE FUNCTION PUB_GET_PY(p_zh_char CHAR DEFAULT '%') RETURN CHAR IS /********************************************************************
阅读全文
摘要:layer.open({ type: 2, title: '弹出层', content: pageUrl, area: ['600px', '500px'], btn: ['确定', '取消'], shadeClose: true, btnAlign: 'r', yes: function (ind
阅读全文
摘要:import org.apache.commons.lang.StringUtils; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import ja
阅读全文
摘要:// 将数字使用 , 分割 例:121356 -> 121,356 export function breakNumComma(nums, ws) { // 如果是纯数字 或 字符串型纯数字 isNaN() 返回 false,包含任意任意非数字字符(包含一个小数点除外)均返回 true // 对于
阅读全文
摘要:textarea { width: 100%; border: none; resize: none; /* 禁止拖拽大小 */ background: unset;}随内容自适应高度:js:var tt = document.getElementById("textarea");tt.style.
阅读全文