- 浏览: 7064 次
- 性别:
- 来自: 北京
最新评论
文章列表
第一步:在porm.xml文件中引入下面的jar
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.7.3</version>
</dependency>
第二步:写配置文件(local-redis.properties)
#master IP
redis.master.host=192.168.4.92
# ...
1.执行时间
window.onload必须等到页面内包括图片的所有元素加载完毕后才能执行。
$(document).ready()是DOM结构绘制完毕后就执行,不必等到加载完毕。
2.编写个数不同
window.onload不能同时编写多个,如果有多个window.onload方法,只会执行一个
$(document).ready()可以同时编写多个,并且都可以得到执行
3.简化写法
window.onload没有简化写法
$(document).ready(function ...
// 产生随机数
function rnd() {
//生成一个Date对象
rnd.today=new Date();
//设置种子为当前时间
rnd.seed=rnd.today.getTime();
//稍长随机数
rnd.seed = (rnd.seed*9301+49297) % 233280;
return rnd.seed/(233280.0);
};
//取整数
function rand(number) {
return Math.ceil(rnd()*numbe ...
// 格式化金额
function fmoney(s, n) {
n = n > 0 && n <= 20 ? n : 2;
s = parseFloat((s + "").replace(/[^\d\.-]/g, "")).toFixed(n) + ""; // toFixed(2);保留2位小数但结果为一个String类型
var l = s.split(".")[0].split("").reverse(), //reverse() 方法用 ...
/**
* 返回'yyyy-MM-dd'
* @param value
* @returns
*/
function formatDate(value){
if(null==value) return '';
if(!(value instanceof Number)){
value = parseInt(value);
}
var date = new Date(value);
return date.Format('yyyy-MM-dd')
}
/**
* 返回'yyyy-MM-dd HH:mm:ss'
* @par ...
<style type="text/css">
ul {
list-style: none;
}
ul li {
float: left;
}
</style>
<ul>
<li>sss</li>
<li>333</li>
</ul>
第一步:书写过滤器类,过滤器必须继承org.springframework.web.servlet.handler.HandlerInterceptorAdapter并重写preHandle方法。
/**
* 检测是否已经登录
* <p>Title:SecurityInterceptor </p>
* <p>Description: </p>
* @author zhanghaodong
* @date 2015年11月27日 上午11:18:56
*/
public class SecurityInterceptor extends ...
参考网站:
http://www.tuicool.com/articles/myeANv
http://my.oschina.net/u/1469930/blog/388004
第一步:
在porm.xml文件中引入需要引进的jar包
<!--配置ehcache -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-ehcache</artifactId>
<version>1. ...
参考网站:
http://www.tuicool.com/articles/myeANv
http://my.oschina.net/u/1469930/blog/388004
第一步:
在porm.xml文件中引入需要引进的jar包
<!--配置ehcache -->
<dependency>
<groupId>com.googlecode.ehcache-spring-annotations</groupId>
<artifactId>ehcache-spring-annotations ...