logview.html 368 Bytes
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<meta charset="UTF-8">
<head th:include="include :: header">
</head>
<body>
<div id="log" style="margin: 20px 20px"></div>
</body>
<div th:include="include :: footer"></div>
<script th:inline="javascript">
    function init() {
        $("#log").html([[${log}]])
    }
    init();
</script>
</html>