thymeleaf在html和js中拼接字符串⼀、th:text字符串和事件拼接
1.
1. <span th:text="'Welcome,'+${user.name}">
2.  <span th:text="|Welcome, ${user.name}|">
3. input type="button" th:οnclick="|javascript:fungetone(${con.uid})|" value = "修改" />
4. <a href="javascript:void(0) th:οnclick='${"goRead("+menu.***+")"}'>
5.
亲测这种可以
⼆、th:action字符串拼接
  <form th:action="@{'/user/'+${user.userId}}"></form>
  <form th:action="@{/user/{userId}(userId=${user.userId})}"></form>
JavaScript中
  <script th:inline="javascript">
  $("#content").html(
    "<select name='status'>"+
    " <option value=''>[[#{adminmon.choose}]]</option>"+
    " <option value="+[[${status}]]+">[[#{'Order.Status.' + ${value}}]]</option>"+
    "</select>");
thyme  </script>
三 拼接url和href
  src⽰例:
  <img th:src="@{/img/research/{filename}(filename=${research.filename})}">
  href⽰例:
  <a th:href="@{''+${url.url}}" th:text="${url.urlName}"></a>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。