javascript - Thymeleaf th:text How to add static text to dynamic value - Stack Overflow

Started with Thymeleaf and have one question. I have iteration with<tr th:each="it,row: ${res

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 badges
Add a ment  | 

1 Answer 1

Reset to default 3

In 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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745663152a4638959.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信