蜜蜂笔记
Bootstrap button 中的 autocomplete="off" 是什么意思?
经过一番探索,在 button 加上 autocomplete="off",是因为在 Firefox 浏览器下,按钮通过 JS 禁用后,在页面跳转后仍然会是禁用状态。而 Bootstrap 提供了一种方法,可以设置 autocomplete="off" 关闭这个“功能”。
源代码:
点击运行 »
<div> <button id="test-1" type="button">按钮</button> </div> <p>重现步骤</p> <p>Firefox 浏览器下按顺序点击步骤,可重现。</p> <ol> <li><a href="/examples/test-firefox-form-control-disable-issue/result.html" target="_blank">新窗口打开实例</a> <li><a href="#" onclick="document.getElementById('test-1').disabled = true;document.getElementById('test-2').disabled = true;">禁用按钮</a></li> <li><a href="?test=1">跳转到下一个页面</a></li> <li><a href="javascript:history.back()">返回原来的页面,可看到按钮还是禁用状态</a></li> </ol>
运行结果:
点击运行 »