标签: jquery html5 thymeleaf
只有在使用百万富翁th:required和jQuery可见时才能设置输入?
th:required
答案 0 :(得分:1)
Thymeleaf服务器端处理生成html页面。在生成页面时,它对客户端的可见性状态一无所知。您需要添加jQuery并跟随设置在客户端上可见的必需设置。
$(document).ready(function() { $('input:visible').attr('required', true); })