ZPY博客

jquery里onclick事件里画面的迁移跳转

项目中有这种写法:

<button th:onclick="|location.href = '/user/list'|">返回</button>

但其实thymeleaf中||是在有变量时才会使用的,所以上面的写法等价于下面的写法:

<button onclick="location.href = '/user/list'">返回</button>