Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 j2html 创建登录表单,但是当尝试在我的表单中添加标签时,不存在预定义的标签,例如 withId(),withName()
private static Tag generateUserField(String user) { return input().withType("text").withName("user").withId(user).withPlaceholder("Enter username"); }
<label>是一个单独的元素,它不是. <input>所以你需要通过TagCreator.label().
<label>
<input>
TagCreator.label()