thymeleaf onclick传参
时间: 2023-08-30 08:10:28 浏览: 286
thymeleaf文档
Thymeleaf中可以使用$符号来获取页面中定义的变量,然后将其作为参数传递给onclick函数,示例代码如下:
```
<button type="button" th:onclick="'myFunction(\'' + ${variable} + '\')'">Click me!</button>
```
在这个例子中,我们将名为variable的Thymeleaf变量的值作为字符串参数传递给myFunction函数中的单引号中的JavaScript语句。请注意,我们使用了反斜杠来转义单引号。
阅读全文