thymeleaf使用script需要引入什么包吗
时间: 2024-05-02 14:23:12 浏览: 73
Thymeleaf所需要的jar包
Thymeleaf是一个Java模板引擎,它不需要引入外部的JavaScript库或包来使用内置的`<script>`标签。Thymeleaf内置的`<script>`标签可以直接在HTML模板中使用,例如:
```html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Thymeleaf Script Example</title>
<meta charset="UTF-8"/>
</head>
<body>
<h1>Thymeleaf Script Example</h1>
<!-- 内置的script标签 -->
<script th:inline="javascript">
/*<![CDATA[*/
var message = [[${message}]];
alert("Message: " + message);
/*]]>*/
</script>
</body>
</html>
```
在这个例子中,Thymeleaf使用了内置的`<script>`标签,其中`th:inline`属性值为`"javascript"`,这表示在这个`<script>`标签中,可以直接使用Thymeleaf表达式。在这个例子中,`[[${message}]]`会被替换为服务器端传递过来的消息内容。
阅读全文