情景:
假设要调用如下js函数, 且要将thymeleaf模板中的user对象的name和password做参数传入.
<script>
function test(name, password){
alert("name: " + name + " password:" + password);
}
</script>
- 方法一: 通过|...|, 操作符(ps: 个人认为最简单)
<button th:onclick="|test('${user.name}','${user.password}' )|">测试</button>