摘要: 总结 spring的官方网址:http://spring.io/ spring版本的下载地址:http://repo.spring.io/release/org/springframework/spring spring中有哪些技术点? 1. spring beans、Ioc 2. spring c 阅读全文
posted @ 2018-05-30 23:14 wutao1234 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 方法 function GetQueryString(name){ var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if(r!=nul 阅读全文
posted @ 2018-05-30 14:28 wutao1234 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 存储 <script type="text/javascript"> $("#czjltz").click(function(){ var box = $(".recharge-telnum__show").text(); document.cookie="box="+box+""; }); </s 阅读全文
posted @ 2018-05-30 14:24 wutao1234 阅读(187) 评论(0) 推荐(0) 编辑
摘要: //小写字母自动转换大写字母 $("#carno_").bind("input propertychange", function() { var str=$("#carno_").val(); str=str.toUpperCase(); $("#carno_").val(str); }); 阅读全文
posted @ 2018-05-30 14:19 wutao1234 阅读(286) 评论(0) 推荐(0) 编辑