thymeleaf中关于性别的判断,亲测有效

百度搜索了好多都不起作用,最后看到这个语法==th:field="*{user.userSex}"==亲测有效

 <tr>
                <th>       别:th>
                <td> <input type="radio" name="userSex" value="1" title=""  th:field="*{user.userSex}" />       
                    <input type="radio" name="userSex" value="0" title="" th:field="*{user.userSex}"  >td>
            tr>
            <tr>
                <th>       态:th>
                <td><select name="status" class="sel1">
                    <option>请选择option>
                    <option value="0" th:field="*{user.status}">在职option>
                    <option value="1" th:field="*{user.status}">离职option>
                    <option value="2" th:field="*{user.status}">已删除option>
                select>td>
            tr>

原文链接

你可能感兴趣的:(html)