热门关键字:
html5本地存储localStorage和cookie的灵活运用

html5本地存储localStorage和cookie的灵活运用//设置cookie的方法functionsetCookie(c_name,value,expiredays){varexdate=newDate()exdate.setDate(exdate.getDate()+expiredays)document.cookie=c_name+"="+escape(value)+((...

1163
2015/9/17 21:08:40
0
View Details
java实现把xml格式字符串转化成List集合

java实现把xml格式字符串转化成List集合/***@Description把xml格式字符串转化成List<Map>集合*@author漫画-temdy*@Date2014-11-19*@paramxmlDocxml格式字符串*@return*/publicstaticMapxmlElements(StringxmlDoc){Mapentity=new...

4372
2015/5/18 10:57:58
0
View Details
原生javascript获取页面滚动和可视的宽高

原生javascript获取页面滚动和可视的宽高//网页被卷去的上高度functionEV_myScrollTop(){varn=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0;returnn;}//网页被卷去的左宽度functionEV_myScroll...

1373
2015/5/14 14:04:52
0
View Details
java解析微信发来的请求xml转Map

java解析微信发来的请求xml转Map/***解析微信发来的请求(XML)**@paramrequest*@return*@throwsException*/@SuppressWarnings("unchecked")publicstaticMap<String,String>parseXml(HttpServletRequestrequest)t...

1371
2015/5/13 14:00:52
0
View Details