我是你妈

编程就好跟打游戏一样,各种攻略,各种副本,各种各种,有意思!

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

11 2014 档案

摘要:/** * 中文字符验证 * @param {} str * @return {Boolean} */function checkChinese(str) { var re = /[^\u4e00-\u9fa5]/; if (re.test(str)) return false; return tr... 阅读全文
posted @ 2014-11-25 09:04 杜兰德 阅读(162) 评论(0) 推荐(0)

摘要: 阅读全文
posted @ 2014-11-24 09:53 杜兰德 阅读(193) 评论(0) 推荐(0)

摘要:$(function(){ $(".active_out .abtn").click(function(){ $(this).parents(".active_out").remove(); $(".plusBankBg").hide(); }... 阅读全文
posted @ 2014-11-05 13:34 杜兰德 阅读(1858) 评论(0) 推荐(0)

摘要:Properties Editor 是一款properties文件编辑器。需求:一般我们在做“国际化”功能时,我们需要properties中文表示方式用unicode表示。eclipse默认properties文件编辑器不方便查看,需要我们查看常常查找unicode编码表。Properties Ed... 阅读全文
posted @ 2014-11-04 14:08 杜兰德 阅读(324) 评论(0) 推荐(0)

摘要:偶在页面里引入了标签如下: 出错提示: org.apache.jasper.JasperException: /index.jsp(0,0) This absolute uri (http://java.sun.com/jstl/core) cannot be resolve... 阅读全文
posted @ 2014-11-04 08:29 杜兰德 阅读(512) 评论(0) 推荐(0)