thymeleaf傳值onclick到js

帶有單引號javascript

targetUrl('val')html

<a th:onclick="'javascript:targetUrl(\''+${indexURL.value}+'\');'">

 

不帶有單引號:java

targetUrl(val)sql

<a th:onclick="'javascript:targetUrl('+${indexURL.value}+');'">

 

 

 

thymeleaf傳值onclick到js

<div th:onclick="'javascript:themPage(\''+${theme.value}+'\',\''+${theme.type}+'\');'"></div>
 
<script type="text/javascript">
<![CDATA[
function themPage(value,type){
console.log(value+"--"+type);
}
]]>
</script>
 
thymeleaf截取:日期格式爲:2017-09-10 11:22:12截取後的格式爲:2017-09-10
<div class="weui-cells__tips clearfix" th:with="hdrq=${order.hdrq}">使用日期:<span th:text="${#strings.substring(hdrq,0,10)}"></span></div>
 
  <div th:if="${list.count gt '4'}">
    <i class="weui-loading"></i>
    <span class="weui-loadmore__tips">正在加載</span>
  </div>
  <div th:if="${list.count lt '4'}">
    <span class="weui-loadmore__tips">沒有數據了</span>
    </div>
</div>

 

 


</div>
post

我這裏${tmh[0].pic}是一個圖片的urlui

相關文章
相關標籤/搜索