Questions tagged «django-widget»

6
Django:如何在表单的输入字段中添加任意html属性?
我有一个用模板渲染的输入字段,如下所示: <div class="field"> {{ form.city }} </div> 呈现为: <div class="field"> <input id="id_city" type="text" name="city" maxlength="100" /> </div> 现在,假设我想向autocomplete="off"呈现的输入元素添加一个属性,我该怎么做?还是onclick="xyz()"还是class="my-special-css-class"?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.