Django<输入>里面的<标签>标签>输入>
一些前端专家声称,用 (隐式标签)包装
是一种更好的做法(与显式标签相比,即使它们有
for
属性)。
无论出于什么原因,我都想看看如何使用 Django 以优雅的方式在技术上完成此任务。
Some front-end experts claim that wrapping an <input>
with the <label>
(implicit labels) is a preferable practice (compared to explicit ones, even if they have the for
attribute).
Whatever the reasons for that, I'd like to see how this can be technically done with Django in an elegant way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编写您自己的
小部件
并在您的表单
上使用它们。Write your own
Widgets
and use them on yourForms
.