autocomplete = off也可以与bootstrap一起使用吗?

时间:2016-03-14 21:51:54

标签: jquery twitter-bootstrap radio-button

HTML code:

 <div class="col-md-2 col-md-offset-2 gallery-item">
                <div style="padding-top: 50%; float:right;">
                    <label class="btn btn-info" for="notASign">
                        <input type="radio" name="radio-button-group" id="radioid" autocomplete="off" >Radiobuttontext
                    </label>
                </div>
            </div>

在页面刷新时对我不起作用。无线电按钮保持选中状态。

1 个答案:

答案 0 :(得分:2)

单选按钮通常用于从组中选择单个项目。由于您的单选按钮只是一组中的一个,因此默认选中它。在这里使用复选框可能更有意义:

<div class="checkbox">
  <label>
    <input type="checkbox"> Check me out
  </label>
</div>

默认情况下不会进行检查。此外,autocomplete=off旨在用于表单字段,并禁止浏览器记住用户之前输入的内容。它不会影响单选按钮或复选框:https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion