摘要:
1.problem describe: when your dependency jar about oracle use code like this: <!-- oracle-connector --> <dependency> <groupId>com.oracle</groupId> <ar 阅读全文
摘要:
1.question: when first operate the checkbox with sentence like : $("input[type=checkbox]").attr("checked",true); $("input[type=checkbox]").attr("check 阅读全文
摘要:
1.ztree api中完全拥有以上操作的相关解释,及简单Demo。 2.主要是要学会将单独的效果组合起来使用。 2.1 如: 添加完新的Node节点之后,怎么立即进入新节点的编辑状态来修改名称(或者在添加新节点之前怎么输入节点名称)。 var zTree = $.fn.zTree.getZTree 阅读全文
摘要:
1. question descibe; once, one css file(app.css) of my web project has sentence like this: @import url(http://fonts.googleapi.com/css?family=Source+Sa 阅读全文
摘要:
1. code: (function($){ $.hello = function(str){alert("hello "+str);} })(jQuery); 2: note: 如果页面作者使用了Prototype,且已调用了$.noConflict(),则$被占用, 通过将jQuery传递给$形 阅读全文
摘要:
1.javascript 选项散列对象 function Test(p1,p2,p3,p4,p5){ //do something } call: 参数可选 Test({ p1:value1, p2:value2, p5:value5 }); 2. self-definition function 阅读全文
摘要:
(1)选择最有效率的表名顺序(只在基于规则的优化器中有效):Oracle的解析器按照从右到左的顺序处理FROM子句中的表名,FROM子句中写在最后的表(基础表 driving table)将被最先处理,在FROM子句中包含多个表的情况下,你必须选择记录条数最少的表作为基础表。如果有3个以上的表连接查 阅读全文