admin管理员组文章数量:1435859
Started with Thymeleaf and have one question. I have iteration with
<tr th:each="it,row : ${res.answers}">
<td th:class="${row.even}? 'even' : 'odd'" th:text="${row.count}">
1
</td>
<td th:class="${row.even}? 'even' : 'odd'" th:text="${it.question}">
Value1
</td>
<td th:class="${row.even}? 'even' : 'odd'" th:text="${it.correctAnswer}">
col2
<a href="" th:onclick="'showExplanation(\'' + ${itment} + '\');'">
<sup>Explanation</sup>
</a>
</td>
<td th:class="${row.even}? 'even' : 'odd'" th:text="${it.answer}">
col3
</td>
</tr>
The line with ${it.correctAnswer}
is one that should be formatted as following:
If and only if there is not empty String in ${itment}
then it should be appended superscripted string "Explanation" and when we click this string some Javascript function is called.
My solution above obviously didn't work, but is there any way to add some static html code to dynamic value generated by Thymeleaf at runtime.
What I am trying to do is :
Started with Thymeleaf and have one question. I have iteration with
<tr th:each="it,row : ${res.answers}">
<td th:class="${row.even}? 'even' : 'odd'" th:text="${row.count}">
1
</td>
<td th:class="${row.even}? 'even' : 'odd'" th:text="${it.question}">
Value1
</td>
<td th:class="${row.even}? 'even' : 'odd'" th:text="${it.correctAnswer}">
col2
<a href="" th:onclick="'showExplanation(\'' + ${it.ment} + '\');'">
<sup>Explanation</sup>
</a>
</td>
<td th:class="${row.even}? 'even' : 'odd'" th:text="${it.answer}">
col3
</td>
</tr>
The line with ${it.correctAnswer}
is one that should be formatted as following:
If and only if there is not empty String in ${it.ment}
then it should be appended superscripted string "Explanation" and when we click this string some Javascript function is called.
My solution above obviously didn't work, but is there any way to add some static html code to dynamic value generated by Thymeleaf at runtime.
What I am trying to do is :
Share Improve this question edited May 14, 2016 at 7:12 David Marko 2,5293 gold badges27 silver badges58 bronze badges asked May 13, 2016 at 17:05 TonyTony 3133 silver badges14 bronze badges1 Answer
Reset to default 3In your example you require to concat text to link, to do it simply change your html from:
<td th:class="${row.even}? 'even' : 'odd'" th:text="${it.correctAnswer}">
col2
<a href="" th:onclick="'showExplanation(\'' + ${it.ment} + '\');'" >
<sup>Explanation</sup>
</a>
</td>
to
<td th:class="${row.even}? 'even' : 'odd'" >
<span th:text="${it.correctAnswer}">col2</span>
<a href="" th:if="${it.ment}!=''" th:onclick="'showExplanation(\'' + ${it.ment} + '\');'">
<sup>Explanation</sup>
</a>
</td>
This should display ments link when there are some.
本文标签: javascriptThymeleaf thtext How to add static text to dynamic valueStack Overflow
版权声明:本文标题:javascript - Thymeleaf th:text How to add static text to dynamic value - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745663151a2669124.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论