<!DOCTYPE HTML>
|
<html xmlns:th="http://www.thymeleaf.org">
|
<head>
|
<title>国家海洋综合监管平台</title>
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
</head>
|
<body>
|
<!--/*@thymesVar id="name" type="java.lang.String"*/-->
|
<p th:text= "${name}">测试文本</p>
|
|
</body>
|
<script th:inline="javascript">
|
var message = [[${name}]];
|
console.log(message);
|
alert(message)
|
</script>
|
</html>
|