如何在胸腺中检查复选框?
我正在尝试检查一个复选框,如果我在模型中发送的对象是否将特定属性设置为true(在这种情况下为导师)。
<label th:text="Mentor">Mentor </label>:<span th:text="${useraux.mentor}"/>
<input type="checkbox" th:checked="${useraux.mentor}" th:field="${useraux.mentor}" ng-model="mentor"></input>
I am trying to get a checkbox checked if the object I send in the model has a particular attribute set to true (in this case mentor).
<label th:text="Mentor">Mentor </label>:<span th:text="${useraux.mentor}"/>
<input type="checkbox" th:checked="${useraux.mentor}" th:field="${useraux.mentor}" ng-model="mentor"></input>
I know it is true, because it gives me this output.
But it does not activate the checkbox, I have tried many ways and I am not able to get it checked.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您想在检查的情况下设置条件,如果它是正确的,则希望检查复选框。只需在您的输入中检查属性的条件,例如:
ts:
html:
I believe you want to set a condition on checked, if it comes as true you want the checkbox to be checked. Just set a condition on the property checked in your input, like this:
TS:
HTML: