会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
=>起风了<=
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
2018年7月20日
cookie在后台的存取
摘要: /************存***********///获取cookie值String cookieValue = "";Cookie[] cookies = request.getCookies();if (cookies != null) { //防止出现nullpoint错误for (Cook
阅读全文
posted @ 2018-07-20 10:12 ♥起风了♥
阅读(193)
评论(0)
推荐(0)
2018年6月27日
sql查询:根据中文拼音首字母查询
摘要: SELECT * FROM 表 order by 字段 collate Chinese_PRC_CI_AS
阅读全文
posted @ 2018-06-27 10:58 ♥起风了♥
阅读(758)
评论(0)
推荐(0)
2018年6月23日
ajax解析json值
摘要: $.ajax({ async: true, type: "post", url: "${ctxPath!}/pc/xxx/json?id=" + id, dataType: "json", success: function (data) { $("#shi").empty(); $.each(da
阅读全文
posted @ 2018-06-23 18:07 ♥起风了♥
阅读(136)
评论(0)
推荐(0)
2018年6月20日
JQuery获取字符串中的数字
摘要: var reg = /\d+/g; var str = "grid30_r14_c5_value8.39"; var ms = str.match(reg) alert(ms.join(','))
阅读全文
posted @ 2018-06-20 12:02 ♥起风了♥
阅读(510)
评论(0)
推荐(0)
2018年6月4日
港澳台以及大陆正则表达式
摘要: var reg = /^[1][3-8]\d{9}$|^([6|9])\d{7}$|^[0][9]\d{8}$|^[6]([8|6])\d{5}$/; var regExp = new RegExp(reg);
阅读全文
posted @ 2018-06-04 15:18 ♥起风了♥
阅读(380)
评论(0)
推荐(0)
2018年5月31日
富文本插件的使用
摘要: 富文本: 在WebRoot目录下放入插件(插件在云盘中下载或者百度自行搜索) 在<head></head>里附上: <script charset="utf-8" src="<%=basePath %>kindeditor-4.1.10/kindeditor.js"></script> <scrip
阅读全文
posted @ 2018-05-31 09:28 ♥起风了♥
阅读(153)
评论(0)
推荐(0)
2018年5月30日
Ajax在springMVC中实现前后台交互(后台返回字符串)
摘要: 后台:controller方法里面: Tribe tribe = tribedao.selectVipUserByTribeid(map); String username = tribe.getCreateusermap().getRealname(); int userid = tribe.ge
阅读全文
posted @ 2018-05-30 16:04 ♥起风了♥
阅读(1238)
评论(0)
推荐(0)
Ajax在springMVC中实现前后台交互(后台回集合,前台获取集合对象)
摘要: 前台: $.ajax({ url:"searchxxx.do", type:"post", dataType:"JSON", async:"true",//异步请求 data:{"name":setTname,"id":1}, success:function(data){//alert(data)
阅读全文
posted @ 2018-05-30 00:28 ♥起风了♥
阅读(272)
评论(0)
推荐(0)
上一页
1
2