zoukankan      html  css  js  c++  java
  • springboot themleaf 开发笔记

    <form id="form-query" th:action="@{/member-score/rule-save}" th:object="${memberScoreRuleVo}" method="post" class="form-horizontal">

    <select id="actionId" name="actionId" class="form-control">
    <option th:each="item:${memberScoreRuleVo.actions}" th:value="${item.id}" th:text="${item.name}" ></option>
    </select>


    href="" th:href="@{/member-score/rule-on(id=${rule.id})}" >增加</a>


    <tr th:each="rule:${offRules}">
    <td th:text="${rule.id}"></td>

      <dd th:text="${#numbers.formatDecimal(product.price, 1, 2)}">180</dd>
       <dt>进货日期</dt>
       <dd th:text="${#dates.format(product.availableFrom, 'yyyy-MM-dd')}">2014-12-01</dd>

    <div th:text="${html}">
      This is an &lt;em&gt;HTML&lt;/em&gt; text. &lt;b&gt;Enjoy yourself!&lt;/b&gt;
    </div>
    <div th:utext="${html}">
      This is an <em>HTML</em> text. <b>Enjoy yourself!</b>
    </div>


    /*<![CDATA[*/
    /*]]>*/
    th:value="*{#dates.format(giftsVo.endInboundTime, 'yyyy-MM-dd HH:mm:ss')}"

    th:value="*{#dates.format(giftsVo.strInboundTime, 'yyyy-MM-dd HH:mm:ss')}"
    script th:inline="javascript">
    /*<![CDATA[*/
    jQuery().ready(function(){
    /*[[${pageHelper.documentReady}]]*/
    });
    /*]]>*/
    </script>

  • 相关阅读:
    删除 SQL Server 2005 Express 工具
    静态和非静态
    C#中的托管和非托管
    类和结构的区别
    asp.net URL DES加密 什在URL中的使用
    正则替换图片路径
    Oracle 正则 一行转多行
    Oracle 存储过程
    HTTP SOAP Request
    jquery 高亮
  • 原文地址:https://www.cnblogs.com/cxlings/p/6252940.html
Copyright © 2011-2022 走看看