12 2016 档案

摘要:后台收不到值。 解决办法: 设置jQuery.ajax的tradional属性 阅读全文
posted @ 2016-12-27 18:01 好吧的啊 阅读(1761) 评论(0) 推荐(1)
摘要://移除首部和尾部 public static String replaceStr(String str) { Pattern pattern = Pattern.compile("^,+|,+$"); Matcher matcher = pattern.matcher(str); return matcher.replaceAll(""); } //只移除尾部 publ... 阅读全文
posted @ 2016-12-02 11:01 好吧的啊 阅读(1199) 评论(0) 推荐(0)