• 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" />
    

      

  • 相关阅读:
    B1005 继续(3n+1)猜想 (25分)
    B1091 N-自守数 (15分)
    B1086 就不告诉你 (15分)
    B1081 检查密码 (15分)
    个人博客作业Week1
    2015个人项目(修改除法要求)
    2014个人博客列表
    最佳个人博客、团队博客评分
    最终评审时间确定
    最终复审要求
  • 原文地址:https://www.cnblogs.com/amylis_chen/p/15560673.html
Copyright © 2020-2023  润新知