我如何仅在百里香中显示选定的选项
我正在尝试修改 Thymeleaf 中的选项,以便在单击该选项后表格可以仅显示选定的项目。这是我的代码:
<th>
<select th:onchange="???" id="stateSelect" class="form-control" th:field="*{receiverType}">
<option th:value='NULL'>All aggregators</option>
<option th:each="receiverType : ${receiverTypes}"
th:value="${receiverType}"
th:text="${receiverType}">
</option>
</select>
</th>
我知道我应该使用 onchange
,但我很困惑。
I am trying to modify the option in Thymeleaf so that the table can show me only selected item, after clicking the option. Here is my code:
<th>
<select th:onchange="???" id="stateSelect" class="form-control" th:field="*{receiverType}">
<option th:value='NULL'>All aggregators</option>
<option th:each="receiverType : ${receiverTypes}"
th:value="${receiverType}"
th:text="${receiverType}">
</option>
</select>
</th>
I know that i should use onchange
, but i am confused.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论