SpringBoot自定义check注解 @Target({ ElementType.TYPE, ElementType.FIELD }) @Retention(RetentionPolicy.RUNTIME) @Constraint(val... 2018年8月29日 SpringBoot 浏览量:1,089 次 发表评论 阅读全文
jquery里onclick事件里画面的迁移跳转 项目中有这种写法: <button th:onclick="|location.href = '/user/list'|">返回</button> 但其实thymeleaf中|... 2018年8月29日 jquery 浏览量:876 次 发表评论 阅读全文
jquery 判断画面上所有输入项目有没有变更 项目中共通方法自动实现了点击一个button,如果画面上的输入项目有变更才会弹出确认框,没有变更则不弹。本以为会有大段代码来实现,但看了后发现就几行代码就搞定了。 原来,是直接用了form的chang... 2018年8月24日 jquery 浏览量:664 次 发表评论 阅读全文
thymeleaf中onclick调用js函数时传参 以往都是用+号来拼接,实际上thymeleaf里也支持下面的这种写法。 <button th:onclick="@{javascript:edit('{prodNo}')(prodNo = ${... 2018年8月23日 thymeleaf 浏览量:1,776 次 发表评论 阅读全文
jquery取父级tr里第一个td里的span的值 html里结构如下: <tr> <td class="table__cell"> <span>12313</span> </td> <... 2018年8月23日 jquery 浏览量:1,059 次 1 阅读全文
SpringBoot里多个url对应一个方法 写法如下: @RequestMapping(value = { "{prodNo}/detail", "{prodNo}/{stationNo}/detail" }) public ModelAndV... 2018年8月23日 SpringBoot 浏览量:1,263 次 发表评论 阅读全文
thymeleaf中的字符串和变量拼接 首先看看thymeleaf官方文档里的描述,写得很清楚。 4.8 Literal substitutions Literal substitutions allow for an easy forma... 2018年8月22日 Spring 浏览量:4,446 次 发表评论 阅读全文
jQuery检查某个元素在页面上是否存在 用jQuery检查某个元素在网页上是否存在时,应该根据获取元素的长度来判断,代码如下: if($("#tt").length > 0) { //元素存在时执行的代码 } (更多…) 2018年8月21日 jquery 浏览量:547 次 发表评论 阅读全文
SpringBoot以form形式接受单值 controller里: @PostMapping("{prodNo}/edit") @RequestMapping(value = "/{prodNo}/edit", method = { Requ... 2018年8月21日 SpringBoot 浏览量:811 次 发表评论 阅读全文