08 2017 档案

摘要:var $q=jQuery.noConflict(); 阅读全文
posted @ 2017-08-24 14:17 Debugs 阅读(118) 评论(0) 推荐(0)
摘要:oracle的递归运算(树运算)start with org_id ='1'connect by prior parent_id=son_id 1.前言 oracle的递归运算,在我们web页面的目录结构中会经常用到,据说是面试经常出的题目,而网上的一些东西说得都不是很明了,所以自己整理了一下,以下 阅读全文
posted @ 2017-08-22 12:40 Debugs 阅读(1378) 评论(0) 推荐(0)
摘要:通过子节点向根节点追朔. select * from persons.dept start with deptid=76 connect by prior paredeptid=deptid 通过根节点遍历子节点(不包含根节点). select * from persons.dept start w 阅读全文
posted @ 2017-08-22 12:27 Debugs 阅读(2244) 评论(0) 推荐(0)
摘要:排除本身 <select id="getdata" parameterClass="map" resultClass="hmap"> SELECT TO_CHAR(XRGFN_START,'yyyy-mm-dd') XRGFN_START, TO_CHAR(XRGFN_EXPIRE,'yyyy-mm 阅读全文
posted @ 2017-08-15 10:49 Debugs 阅读(297) 评论(0) 推荐(0)
摘要:table ID="zhutiTable" html2="<tr></tr>"; 的数据 setTableInnerHTML(document.getElementById('zhutiTable'), html2); function setTableInnerHTML(table, html) 阅读全文
posted @ 2017-08-10 19:29 Debugs 阅读(458) 评论(0) 推荐(0)
摘要:<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>家谱树状代码 demo by js.alixixi.com</title> <style class="csscreations">/*Now the CSS*/* {margin: 阅读全文
posted @ 2017-08-08 18:18 Debugs 阅读(704) 评论(0) 推荐(0)
摘要:用到了Easyui datagrd行内添加和编辑数据,同时对行内数据上移下移,所以对这几个功能做个总结。 1、首先大概说下这几个功能里用到的主要方法,行内添加数据主要是添加列的editor属性, 行内编辑主要使用beginEdit(), endEdit(),同时一个关键就是拿到当前的操作行索引edi 阅读全文
posted @ 2017-08-03 09:28 Debugs 阅读(1594) 评论(0) 推荐(0)
摘要:一、js方式的页面跳转1.window.location.href方式 <script language="JavaScript" type="text/javascript"> window.location.href="http://www.dayanmei.com/"; </script>2. 阅读全文
posted @ 2017-08-01 18:21 Debugs 阅读(3281) 评论(0) 推荐(0)