thymeleaf引入公共css、js等


<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<th:block th:fragment="common_header">
    <!-- Common styles -->
    <meta charset="UTF-8">
    <meta name="renderer" content="webkit|ie-comp|ie-stand">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <link rel="shortcut icon" th:href="@{/favicon.ico}" type="image/x-icon" />
    <link rel="stylesheet" th:href="@{/resource/plugin/weAdmin/static/css/font.css}">
    <link rel="stylesheet" th:href="@{/resource/plugin/weAdmin/static/css/weadmin.css}">
</th:block>

代码引公共js
<th:block th:fragment="common_js">
	<!-- Common scripts -->
    <script type="text/javascript" th:src="@{/resource/plugin/weAdmin/lib/layui/layui.js}" charset="utf-8"></script>
</th:block>

  代码引用公共head

<head>
<title>haha</title>
<th:block th:replace="common::common_header" />
<link rel="stylesheet" th:href="@{/demo.css}" type="text/css" />
</head>

  

<th:block th:replace="common::common_js" />

  

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM