`
MS_LStart
  • 浏览: 7765 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
JS  window.showModalDialog  和  window.open   关闭之前刷新父对象 页面 1、window.showModalDialog: window.dialogArguments.window.location=window.dialogArguments.window.location; 2、window.open: opener.location.reload();
转http://www.cnblogs.com/zengwei/archive/2011/10/22/2221045.html window.showModalDialog刷新父窗口和本窗口的方法及注意: 一.刷新父窗口的方法: A.使用window.returnValue给父窗口传值,然后根据值判断是否刷新。       在window.showModalDialog窗口页面中用window.returnValue方式设置返回值; 比如:window.returnValue='refresh'; B。在写window.showModalDialog弹出窗口函数时,定义个变量,然后根据变量 ...
转至:http://www.cnblogs.com/200911/archive/2012/10/09/2716873.html 积淀 hibernate缓存:一级缓存和二级缓存 1.什么是缓存?  缓存是介于物理数据源与应用程序之间,是对数据库中的数据复制一份临时放在内存中的容器,其作用是为了减少应用程序对物理数据源访问的次数,从而提高了应用程序的运行性能。Hibernate在进行读取数据的时候,根据缓存机制在相应的缓存中查询,如果在缓存中找到了需要的数据(我们把这称做“缓存命 中"),则就直接把命中的数据作为结果加以利用,避免了大量发送SQL语句到数据库查询的性能损耗。 ...

禁止网页右键

    博客分类:
  • JS
function click(e) { if (document.all) {   if (event.button==1||event.button==2||event.button==3) {    oncontextmenu='return false';   } } if (document.layers) {   if (e.which == 3) {    oncontextmenu='return false';   } } } if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } docume ...
public class TakeFilePathAndName {            public static void main(String[] args) {            String path = "f:\\TestFile";            getFile(path);        }                private static void getFile(String path){            // get file list where the path has            File ...

js 两数组比较

    博客分类:
  • JS
<html> <head> <script type="text/javascript"> var a=['a','b','c','d','e']; var b=['a','b','f','g','h']; var arr1 = intersection(a,b); alert(arr1); var arr2 = chaji(a,b); alert(arr2); var arr3 = inANotInB(a,b); alert(arr3); //a,b中重复的部分 function intersection(a,b){   var ob ...
SELECT     extract(year from everyday_quarter) yyyy,         to_char(everyday_quarter,'q') q     FROM(         SELECT            add_months(to_date('2009-07', 'yyyy-mm'),(rownum-1) * 3) everyday_quarter         FROM dual connect by         rownum <         (extract(year FROM to_date('2011-11', ...
Global site tag (gtag.js) - Google Analytics