`
文章列表
如果你稍微懂一些JS代码,一般都会知道 window.location.href 这个属性。并且用该属性获取页面 URL 地址: window.location.href = window.location.href; 好吧,我告诉你,这样弱掉了。其实原生 JavaScript 真是什么都有。 window.location 对象所包含的属性 属性 描述 hash 从井号 (#) 开始的 URL(锚) host

js window.location.search

    博客分类:
  • js
window.location.search是什么意思?[用js如何获得url传递的参数]  var param = window.location.search; 例<a href="http://localhost/web.asp?a=1&b=2"></a> param 会得到?a=1&b=2

js判定对象是否为空

    博客分类:
  • js
/** * 判断对象是否为空 * @param str * @returns */function isNull(str){ if(str === undefined || str === "" || str === null || str === "null"){  return true; }else{  return false; }}
function getNowFormatDate() {     var date = new Date();     var seperator1 = "-";     var seperator2 = ":";     var month = date.getMonth() + 1;     var strDate = date.getDate();     if (month >= 1 && month <= 9) {         month = "0" + month;     }     i ...
/** * 两个时间相减 * @param starttime * @param endtime * @returns */function GetDateDiff(starttime,endtime,type){   if( starttime == null || endtime == null){  return ""; }  var ed = endtime; var sd = starttime ; if(type==1){    ed = ed+":00"; }else if(type ==2){  sd = sd +":00&quo ...
http://www.cnblogs.com/lanxuezaipiao/p/3291641.html
书中讲:以下情况,Session结束生命周期,Servlet容器将Session所占资源释放:1.客户端关闭浏览器2.Session过期3.服务器端调用了HttpSession的invalidate()方法。 "一个浏览器就是一个新session,关了浏览器session就结束了"session 是在服务器端建立的,浏览器访问服务器会有一个sessionid,浏览器端通过sessionid定位服务器端的session,session的创建和销毁由服务器端控制。当浏览器关闭后,session还存在在服务器端,只不过你新开的浏览器去访问服务器会创建另一个session,这个时 ...

browserWindow.js源码2

    博客分类:
  • js
/******************************************************************************* * Copyright (c) 2008, 2013 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this ...

system.js源码

    博客分类:
  • js
/******************************************************************************* * Copyright (c) 2008, 2010 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this ...

browserWindow.js源码

    博客分类:
  • js
/******************************************************************************* * Copyright (c) 2008, 2013 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this ...
要深入学习注解,我们就必须能定义自己的注解,并使用注解,在定义自己的注解之前,我们就必须要了解Java为我们提供的元注解和相关定义注解的语法。 元注解:   元注解的作用就是负责注解其他注解。Java5.0定义了4个 ...

java Collections排序

    博客分类:
  • java
public Map<String, Object> find(DBObject query, Integer page, Integer rows) throws ParseException {  DBCollection col = MongoUtil.getCollection(collection);   if (page > 0) {   page = page - 1;  } else {   page = 0;  }   Map<String, Object> result = new HashMap<String, Object> ...
Java的HashMap和HashTable 1. HashMap 1)  hashmap的数据结构       Hashmap是一个数组和链表的结合体(在数据结构称“链表散列“),如下图示:         当我们往hashmap中put元素的时候,先根据key的hash值得到这个元素在数组中的位置(即下标),然后就可以把这个元素放到对应的位置中了。如果这个元素所在的位子上已经存放有其他元素了,那么在同一个位子上的元素将以链表的形式存放,新加入的放在链头,最先加入的放在链尾。 2)使用

添加路由

route add 129.168.0.0 mask 255.255.0.0 129.168.20.254 -p route print
之前转载了一篇IBM的CAS单点登录实现,不过瘾,于是到官网弄下最新版本来再战一把: 这个CAS(Central Authentication Service)是耶鲁大学的开源项目,旨在实现企业应用单点登录,还是很不错的,牛b的大学确实不一样,不是我们这些2b学校式的教育。其官网http://www.jasig.org/cas,很不幸,应该翻了墙才能进去,建议就GoAgent足已。 实验环境:
Global site tag (gtag.js) - Google Analytics