我正在研究烧瓶,一旦我检查了一个复选框,当我回到同一页面时,复选框被取消选中。我希望检查复选框,直到用户手动取消选中它们。
{% for entry in entries %}
<td> <input type="checkbox" name="pos" value="{{entry.clientid}}" >Verified< /td>
{% endfor %}
这是html页面,重新加载所有复选框后再次取消选中
答案 0 :(得分:1)
如果要勾选复选框,则需要告诉浏览器勾选它。您可以使用checked="checked"
字段中的input
来执行此操作。
<input type="checkbox" name="pos" value="{{entry.clientid}}" {% if entry.clientid %}checked="checked"{% endif %}>
如果条目上的clientid
字段有值,则会勾选复选框,但您可以更改它以检查您想要的任何值。
答案 1 :(得分:-1)
试试这些:
<input type="checkbox" checked="true">